* Rename remote-es1800.c to remote-es.c
[deliverable/binutils-gdb.git] / gdb / doc / gdbinv-s.texi
CommitLineData
18fae2a8
RP
1@c -*- Texinfo -*-
2@c Copyright (c) 1990 1991 1992 1993 Free Software Foundation, Inc.
3@c This file is part of the source for the GDB manual.
4@c This text diverted to "Remote Debugging" section in general case;
5@c however, if we're doing a manual specifically for one of these, it
6@c belongs up front (in "Getting In and Out" chapter).
18fae2a8 7
ed447b95 8@ifset REMOTESTUB
18fae2a8
RP
9@node Remote Serial
10@subsection The @value{GDBN} remote serial protocol
11
12@cindex remote serial debugging, overview
13To debug a program running on another machine (the debugging
14@dfn{target} machine), you must first arrange for all the usual
15prerequisites for the program to run by itself. For example, for a C
16program, you need
17
18@enumerate
19@item
20A startup routine to set up the C runtime environment; these usually
21have a name like @file{crt0}. The startup routine may be supplied by
22your hardware supplier, or you may have to write your own.
23
24@item
25You probably need a C subroutine library to support your program's
26subroutine calls, notably managing input and output.
27
28@item
29A way of getting your program to the other machine---for example, a
30download program. These are often supplied by the hardware
31manufacturer, but you may have to write your own from hardware
32documentation.
33@end enumerate
34
35The next step is to arrange for your program to use a serial port to
36communicate with the machine where @value{GDBN} is running (the @dfn{host}
37machine). In general terms, the scheme looks like this:
38
39@table @emph
40@item On the host,
41@value{GDBN} already understands how to use this protocol; when everything
42else is set up, you can simply use the @samp{target remote} command
43(@pxref{Targets,,Specifying a Debugging Target}).
44
45@item On the target,
46you must link with your program a few special-purpose subroutines that
47implement the @value{GDBN} remote serial protocol. The file containing these
48subroutines is called a @dfn{debugging stub}.
49@end table
50
51The debugging stub is specific to the architecture of the remote
52machine; for example, use @file{sparc-stub.c} to debug programs on
53@sc{sparc} boards.
54
55@cindex remote serial stub list
56These working remote stubs are distributed with @value{GDBN}:
57
18fae2a8
RP
58@table @code
59@item sparc-stub.c
60@kindex sparc-stub.c
61For @sc{sparc} architectures.
62
63@item m68k-stub.c
49f09e18
JK
64@kindex m68k-stub.c
65@kindex Motorola 680x0
66@kindex 680x0
18fae2a8
RP
67For Motorola 680x0 architectures.
68
69@item i386-stub.c
49f09e18
JK
70@kindex i386-stub.c
71@kindex Intel
72@kindex 386
18fae2a8
RP
73For Intel 386 and compatible architectures.
74@end table
75
76The @file{README} file in the @value{GDBN} distribution may list other
77recently added stubs.
78
79@menu
ed447b95
RP
80* Stub Contents:: What the stub can do for you
81* Bootstrapping:: What you must do for the stub
82* Debug Session:: Putting it all together
83* Protocol:: Outline of the communication protocol
18fae2a8
RP
84@end menu
85
ed447b95 86@node Stub Contents
18fae2a8
RP
87@subsubsection What the stub can do for you
88
89@cindex remote serial stub
90The debugging stub for your architecture supplies these three
91subroutines:
92
93@table @code
94@item set_debug_traps
95@kindex set_debug_traps
96@cindex remote serial stub, initialization
8c69096b
RP
97This routine arranges for @code{handle_exception} to run when your
98program stops. You must call this subroutine explicitly near the
99beginning of your program.
18fae2a8
RP
100
101@item handle_exception
102@kindex handle_exception
103@cindex remote serial stub, main routine
104This is the central workhorse, but your program never calls it
105explicitly---the setup code arranges for @code{handle_exception} to
106run when a trap is triggered.
107
108@code{handle_exception} takes control when your program stops during
109execution (for example, on a breakpoint), and mediates communications
110with @value{GDBN} on the host machine. This is where the communications
111protocol is implemented; @code{handle_exception} acts as the @value{GDBN}
112representative on the target machine; it begins by sending summary
113information on the state of your program, then continues to execute,
114retrieving and transmitting any information @value{GDBN} needs, until you
115execute a @value{GDBN} command that makes your program resume; at that point,
116@code{handle_exception} returns control to your own code on the target
117machine.
118
119@item breakpoint
120@cindex @code{breakpoint} subroutine, remote
121Use this auxiliary subroutine to make your program contain a
122breakpoint. Depending on the particular situation, this may be the only
123way for @value{GDBN} to get control. For instance, if your target
124machine has some sort of interrupt button, you won't need to call this;
125pressing the interrupt button will transfer control to
126@code{handle_exception}---in efect, to @value{GDBN}. On some machines,
127simply receiving characters on the serial port may also trigger a trap;
128again, in that situation, you don't need to call @code{breakpoint} from
129your own program---simply running @samp{target remote} from the host
130@value{GDBN} session will get control.
131
132Call @code{breakpoint} if none of these is true, or if you simply want
133to make certain your program stops at a predetermined point for the
134start of your debugging session.
135@end table
136
ed447b95 137@node Bootstrapping
18fae2a8
RP
138@subsubsection What you must do for the stub
139
140@cindex remote stub, support routines
141The debugging stubs that come with @value{GDBN} are set up for a particular
142chip architecture, but they have no information about the rest of your
143debugging target machine. To allow the stub to work, you must supply
144these special low-level subroutines:
145
146@table @code
147@item int getDebugChar()
148@kindex getDebugChar
149Write this subroutine to read a single character from the serial port.
150It may be identical to @code{getchar} for your target system; a
151different name is used to allow you to distinguish the two if you wish.
152
153@item void putDebugChar(int)
154@kindex putDebugChar
155Write this subroutine to write a single character to the serial port.
156It may be identical to @code{putchar} for your target system; a
157different name is used to allow you to distinguish the two if you wish.
158
159@item void flush_i_cache()
160@kindex flush_i_cache
161Write this subroutine to flush the instruction cache, if any, on your
162target machine. If there is no instruction cache, this subroutine may
163be a no-op.
164
165On target machines that have instruction caches, @value{GDBN} requires this
166function to make certain that the state of your program is stable.
167@end table
168
169@noindent
170You must also make sure this library routine is available:
171
172@table @code
173@item void *memset(void *, int, int)
174@kindex memset
175This is the standard library function @code{memset} that sets an area of
176memory to a known value. If you have one of the free versions of
177@code{libc.a}, @code{memset} can be found there; otherwise, you must
178either obtain it from your hardware manufacturer, or write your own.
179@end table
180
181If you do not use the GNU C compiler, you may need other standard
182library subroutines as well; this will vary from one stub to another,
183but in general the stubs are likely to use any of the common library
184subroutines which @code{gcc} generates as inline code.
185
186
ed447b95 187@node Debug Session
18fae2a8
RP
188@subsubsection Putting it all together
189
190@cindex remote serial debugging summary
191In summary, when your program is ready to debug, you must follow these
192steps.
193
194@enumerate
195@item
196Make sure you have the supporting low-level routines:
8c69096b
RP
197@display
198@code{getDebugChar}, @code{putDebugChar},
199@code{flush_i_cache}, @code{memset}.
200@end display
18fae2a8
RP
201
202@item
203Insert these lines near the top of your program:
204
205@example
206set_debug_traps();
207breakpoint();
208@end example
209
49f09e18
JK
210@item
211For the 680x0 stub only, you need to provide a variable called
212exceptionHook. Normally you just use
213
214@example
215void (*exceptionHook)() = 0;
216@end example
217
218but if you, before calling @code{set_debug_traps}, set it to point to
219a function, that function will be called when the debugger continues
220from a trap (for example, bus error) which causes the debugger to be
221entered. It is passed one parameter---an @code{int} which is the
222exception number.
223
18fae2a8
RP
224@item
225Compile and link together: your program, the @value{GDBN} debugging stub for
226your target architecture, and the supporting subroutines.
227
228@item
229Make sure you have a serial connection between your target machine and
230the @value{GDBN} host, and identify the serial port used for this on the host.
231
232@item
233Download your program to your target machine (or get it there by
234whatever means the manufacturer provides), and start it.
235
236@item
237To start remote debugging, run @value{GDBN} on the host machine, and specify
238as an executable file the program that is running in the remote machine.
239This tells @value{GDBN} how to find your program's symbols and the contents
240of its pure text.
241
242Then establish communication using the @code{target remote} command.
243Its argument is the name of the device you're using to control the
244target machine. For example:
245
246@example
247target remote /dev/ttyb
248@end example
249
250@noindent
251if the serial line is connected to the device named @file{/dev/ttyb}.
252@ignore
253@c this is from the old text, but it doesn't seem to make sense now that I've
254@c seen an example... pesch 4sep1992
255This will stop the remote machine if it is not already stopped.
256@end ignore
18fae2a8
RP
257@end enumerate
258
259Now you can use all the usual commands to examine and change data and to
260step and continue the remote program.
261
262To resume the remote program and stop debugging it, use the @code{detach}
263command.
264
c5f69ff8
RP
265@cindex interrupting remote programs
266@cindex remote programs, interrupting
267Whenever @value{GDBN} is waiting for the remote program, if you type the
268interrupt character (often @key{C-C}), @value{GDBN} attempts to stop the
269program. This may or may not succeed, depending in part on the hardware
270and the serial drivers the remote system uses. If you type the
271interrupt character once again, @value{GDBN} displays this prompt:
272
273@example
274Interrupted while waiting for the program.
275Give up (and stop debugging it)? (y or n)
276@end example
277
278If you type @kbd{y}, @value{GDBN} abandons the remote debugging session.
279(If you decide you want to try again later, you can use @samp{target
280remote} again to connect once more.) If you type @kbd{n}, @value{GDBN}
281goes back to waiting.
282
ed447b95 283@node Protocol
18fae2a8
RP
284@subsubsection Outline of the communication protocol
285
286@cindex debugging stub, example
287@cindex remote stub, example
288@cindex stub example, remote debugging
289The stub files provided with @value{GDBN} implement the target side of the
290communication protocol, and the @value{GDBN} side is implemented in the
291@value{GDBN} source file @file{remote.c}. Normally, you can simply allow
292these subroutines to communicate, and ignore the details. (If you're
293implementing your own stub file, you can still ignore the details: start
294with one of the existing stub files. @file{sparc-stub.c} is the best
295organized, and therefore the easiest to read.)
296
297However, there may be occasions when you need to know something about
298the protocol---for example, if there is only one serial port to your
299target machine, you might want your program to do something special if
300it recognizes a packet meant for @value{GDBN}.
301
302@cindex protocol, @value{GDBN} remote serial
303@cindex serial protocol, @value{GDBN} remote
304@cindex remote serial protocol
305All @value{GDBN} commands and responses (other than acknowledgements, which
306are single characters) are sent as a packet which includes a
307checksum. A packet is introduced with the character @samp{$}, and ends
308with the character @samp{#} followed by a two-digit checksum:
309
310@example
311$@var{packet info}#@var{checksum}
312@end example
313
314@cindex checksum, for @value{GDBN} remote
315@noindent
316@var{checksum} is computed as the modulo 256 sum of the @var{packet
317info} characters.
318
319When either the host or the target machine receives a packet, the first
320response expected is an acknowledgement: a single character, either
321@samp{+} (to indicate the package was received correctly) or @samp{-}
322(to request retransmission).
323
324The host (@value{GDBN}) sends commands, and the target (the debugging stub
325incorporated in your program) sends data in response. The target also
326sends data when your program stops.
327
328Command packets are distinguished by their first character, which
329identifies the kind of command.
330
331These are the commands currently supported:
332
333@table @code
334@item g
335Requests the values of CPU registers.
336
337@item G
338Sets the values of CPU registers.
339
340@item m@var{addr},@var{count}
341Read @var{count} bytes at location @var{addr}.
342
343@item M@var{addr},@var{count}:@dots{}
344Write @var{count} bytes at location @var{addr}.
345
346@item c
347@itemx c@var{addr}
348Resume execution at the current address (or at @var{addr} if supplied).
349
350@item s
351@itemx s@var{addr}
352Step the target program for one instruction, from either the current
353program counter or from @var{addr} if supplied.
354
355@item k
356Kill the target program.
357
358@item ?
359Report the most recent signal. To allow you to take advantage of the
360@value{GDBN} signal handling commands, one of the functions of the debugging
361stub is to report CPU traps as the corresponding POSIX signal values.
362@end table
363
364@kindex set remotedebug
365@kindex show remotedebug
366@cindex packets, reporting on stdout
367@cindex serial connections, debugging
368If you have trouble with the serial connection, you can use the command
369@code{set remotedebug}. This makes @value{GDBN} report on all packets sent
370back and forth across the serial line to the remote machine. The
371packet-debugging information is printed on the @value{GDBN} standard output
372stream. @code{set remotedebug off} turns it off, and @code{show
373remotedebug} will show you its current state.
374@end ifset
375
a64a6c2b 376@ifset I960
18fae2a8 377@node i960-Nindy Remote
93928b60 378@subsection @value{GDBN} with a remote i960 (Nindy)
18fae2a8
RP
379
380@cindex Nindy
381@cindex i960
382@dfn{Nindy} is a ROM Monitor program for Intel 960 target systems. When
383@value{GDBN} is configured to control a remote Intel 960 using Nindy, you can
384tell @value{GDBN} how to connect to the 960 in several ways:
385
386@itemize @bullet
387@item
388Through command line options specifying serial port, version of the
389Nindy protocol, and communications speed;
390
391@item
392By responding to a prompt on startup;
393
394@item
395By using the @code{target} command at any point during your @value{GDBN}
93928b60 396session. @xref{Target Commands, ,Commands for managing targets}.
18fae2a8
RP
397
398@end itemize
399
400@menu
401* Nindy Startup:: Startup with Nindy
402* Nindy Options:: Options for Nindy
ed447b95 403* Nindy Reset:: Nindy reset command
18fae2a8
RP
404@end menu
405
406@node Nindy Startup
407@subsubsection Startup with Nindy
408
409If you simply start @code{@value{GDBP}} without using any command-line
410options, you are prompted for what serial port to use, @emph{before} you
411reach the ordinary @value{GDBN} prompt:
412
413@example
414Attach /dev/ttyNN -- specify NN, or "quit" to quit:
415@end example
416
417@noindent
418Respond to the prompt with whatever suffix (after @samp{/dev/tty})
419identifies the serial port you want to use. You can, if you choose,
420simply start up with no Nindy connection by responding to the prompt
ed447b95 421with an empty line. If you do this and later wish to attach to Nindy,
93928b60 422use @code{target} (@pxref{Target Commands, ,Commands for managing targets}).
18fae2a8
RP
423
424@node Nindy Options
425@subsubsection Options for Nindy
426
427These are the startup options for beginning your @value{GDBN} session with a
428Nindy-960 board attached:
429
430@table @code
431@item -r @var{port}
432Specify the serial port name of a serial interface to be used to connect
433to the target system. This option is only available when @value{GDBN} is
434configured for the Intel 960 target architecture. You may specify
435@var{port} as any of: a full pathname (e.g. @samp{-r /dev/ttya}), a
436device name in @file{/dev} (e.g. @samp{-r ttya}), or simply the unique
437suffix for a specific @code{tty} (e.g. @samp{-r a}).
438
439@item -O
440(An uppercase letter ``O'', not a zero.) Specify that @value{GDBN} should use
441the ``old'' Nindy monitor protocol to connect to the target system.
442This option is only available when @value{GDBN} is configured for the Intel 960
443target architecture.
444
445@quotation
446@emph{Warning:} if you specify @samp{-O}, but are actually trying to
447connect to a target system that expects the newer protocol, the connection
34ae25cd
RP
448fails, appearing to be a speed mismatch. @value{GDBN} repeatedly
449attempts to reconnect at several different line speeds. You can abort
18fae2a8
RP
450this process with an interrupt.
451@end quotation
452
453@item -brk
454Specify that @value{GDBN} should first send a @code{BREAK} signal to the target
455system, in an attempt to reset it, before connecting to a Nindy target.
456
457@quotation
458@emph{Warning:} Many target systems do not have the hardware that this
459requires; it only works with a few boards.
460@end quotation
461@end table
462
463The standard @samp{-b} option controls the line speed used on the serial
464port.
465
466@c @group
ed447b95 467@node Nindy Reset
93928b60 468@subsubsection Nindy reset command
18fae2a8
RP
469
470@table @code
471@item reset
472@kindex reset
473For a Nindy target, this command sends a ``break'' to the remote target
474system; this is only useful if the target has been equipped with a
475circuit to perform a hard reset (or some other interesting action) when
476a break is detected.
477@end table
478@c @end group
479@end ifset
480
a64a6c2b 481@ifset AMD29K
fe715d06
RP
482@node UDI29K Remote
483@subsection @value{GDBN} and the UDI protocol for AMD29K
484
485@cindex UDI
486@cindex AMD29K via UDI
487@value{GDBN} supports AMD's UDI (``Universal Debugger Interface'')
d7d35f00 488protocol for debugging the a29k processor family. To use this
fe715d06
RP
489configuration with AMD targets running the MiniMON monitor, you need the
490program @code{MONTIP}, available from AMD at no charge. You can also
d7d35f00 491use @value{GDBN} with the UDI conformant a29k simulator program
fe715d06
RP
492@code{ISSTIP}, also available from AMD.
493
494@table @code
495@item target udi @var{keyword}
496@kindex udi
d7d35f00 497Select the UDI interface to a remote a29k board or simulator, where
fe715d06
RP
498@var{keyword} is an entry in the AMD configuration file @file{udi_soc}.
499This file contains keyword entries which specify parameters used to
d7d35f00 500connect to a29k targets. If the @file{udi_soc} file is not in your
fe715d06
RP
501working directory, you must set the environment variable @samp{UDICONF}
502to its pathname.
503@end table
504
18fae2a8 505@node EB29K Remote
93928b60 506@subsection @value{GDBN} with a remote EB29K
18fae2a8
RP
507
508@cindex EB29K board
509@cindex running 29K programs
510
511To use @value{GDBN} from a Unix system to run programs on AMD's EB29K
512board in a PC, you must first connect a serial cable between the PC
513and a serial port on the Unix system. In the following, we assume
514you've hooked the cable between the PC's @file{COM1} port and
515@file{/dev/ttya} on the Unix system.
516
517@menu
ed447b95 518* Comms (EB29K):: Communications setup
18fae2a8 519* gdb-EB29K:: EB29K cross-debugging
ed447b95 520* Remote Log:: Remote log
18fae2a8
RP
521@end menu
522
523@node Comms (EB29K)
93928b60 524@subsubsection Communications setup
18fae2a8 525
ed447b95
RP
526The next step is to set up the PC's port, by doing something like this
527in DOS on the PC:
18fae2a8
RP
528
529@example
530C:\> MODE com1:9600,n,8,1,none
531@end example
532
533@noindent
534This example---run on an MS DOS 4.0 system---sets the PC port to 9600
535bps, no parity, eight data bits, one stop bit, and no ``retry'' action;
536you must match the communications parameters when establishing the Unix
537end of the connection as well.
538@c FIXME: Who knows what this "no retry action" crud from the DOS manual may
539@c mean? It's optional; leave it out? ---pesch@cygnus.com, 25feb91
540
541To give control of the PC to the Unix side of the serial line, type
542the following at the DOS console:
543
544@example
545C:\> CTTY com1
546@end example
547
548@noindent
549(Later, if you wish to return control to the DOS console, you can use
550the command @code{CTTY con}---but you must send it over the device that
551had control, in our example over the @file{COM1} serial line).
552
553From the Unix host, use a communications program such as @code{tip} or
554@code{cu} to communicate with the PC; for example,
555
556@example
557cu -s 9600 -l /dev/ttya
558@end example
559
560@noindent
561The @code{cu} options shown specify, respectively, the linespeed and the
562serial port to use. If you use @code{tip} instead, your command line
563may look something like the following:
564
565@example
566tip -9600 /dev/ttya
567@end example
568
569@noindent
fe715d06 570Your system may require a different name where we show
18fae2a8
RP
571@file{/dev/ttya} as the argument to @code{tip}. The communications
572parameters, including which port to use, are associated with the
573@code{tip} argument in the ``remote'' descriptions file---normally the
574system table @file{/etc/remote}.
575@c FIXME: What if anything needs doing to match the "n,8,1,none" part of
576@c the DOS side's comms setup? cu can support -o (odd
577@c parity), -e (even parity)---apparently no settings for no parity or
578@c for character size. Taken from stty maybe...? John points out tip
579@c can set these as internal variables, eg ~s parity=none; man stty
580@c suggests that it *might* work to stty these options with stdin or
581@c stdout redirected... ---pesch@cygnus.com, 25feb91
582
583@kindex EBMON
584Using the @code{tip} or @code{cu} connection, change the DOS working
585directory to the directory containing a copy of your 29K program, then
586start the PC program @code{EBMON} (an EB29K control program supplied
587with your board by AMD). You should see an initial display from
588@code{EBMON} similar to the one that follows, ending with the
589@code{EBMON} prompt @samp{#}---
590
591@example
592C:\> G:
593
594G:\> CD \usr\joe\work29k
595
596G:\USR\JOE\WORK29K> EBMON
597Am29000 PC Coprocessor Board Monitor, version 3.0-18
598Copyright 1990 Advanced Micro Devices, Inc.
599Written by Gibbons and Associates, Inc.
600
601Enter '?' or 'H' for help
602
603PC Coprocessor Type = EB29K
604I/O Base = 0x208
605Memory Base = 0xd0000
606
607Data Memory Size = 2048KB
608Available I-RAM Range = 0x8000 to 0x1fffff
609Available D-RAM Range = 0x80002000 to 0x801fffff
610
611PageSize = 0x400
612Register Stack Size = 0x800
613Memory Stack Size = 0x1800
614
615CPU PRL = 0x3
616Am29027 Available = No
617Byte Write Available = Yes
618
619# ~.
620@end example
621
622Then exit the @code{cu} or @code{tip} program (done in the example by
623typing @code{~.} at the @code{EBMON} prompt). @code{EBMON} will keep
624running, ready for @value{GDBN} to take over.
625
626For this example, we've assumed what is probably the most convenient
627way to make sure the same 29K program is on both the PC and the Unix
628system: a PC/NFS connection that establishes ``drive @code{G:}'' on the
629PC as a file system on the Unix host. If you do not have PC/NFS or
630something similar connecting the two systems, you must arrange some
631other way---perhaps floppy-disk transfer---of getting the 29K program
632from the Unix system to the PC; @value{GDBN} will @emph{not} download it over the
633serial line.
634
635@node gdb-EB29K
636@subsubsection EB29K cross-debugging
637
638Finally, @code{cd} to the directory containing an image of your 29K
639program on the Unix system, and start @value{GDBN}---specifying as argument the
640name of your 29K program:
641
642@example
643cd /usr/joe/work29k
644@value{GDBP} myfoo
645@end example
646
647Now you can use the @code{target} command:
648
649@example
650target amd-eb /dev/ttya 9600 MYFOO
651@c FIXME: test above 'target amd-eb' as spelled, with caps! caps are meant to
652@c emphasize that this is the name as seen by DOS (since I think DOS is
653@c single-minded about case of letters). ---pesch@cygnus.com, 25feb91
654@end example
655
656@noindent
657In this example, we've assumed your program is in a file called
658@file{myfoo}. Note that the filename given as the last argument to
659@code{target amd-eb} should be the name of the program as it appears to DOS.
660In our example this is simply @code{MYFOO}, but in general it can include
661a DOS path, and depending on your transfer mechanism may not resemble
662the name on the Unix side.
663
664At this point, you can set any breakpoints you wish; when you are ready
665to see your program run on the 29K board, use the @value{GDBN} command
666@code{run}.
667
668To stop debugging the remote program, use the @value{GDBN} @code{detach}
669command.
670
671To return control of the PC to its console, use @code{tip} or @code{cu}
672once again, after your @value{GDBN} session has concluded, to attach to
673@code{EBMON}. You can then type the command @code{q} to shut down
674@code{EBMON}, returning control to the DOS command-line interpreter.
675Type @code{CTTY con} to return command input to the main DOS console,
676and type @kbd{~.} to leave @code{tip} or @code{cu}.
677
678@node Remote Log
93928b60 679@subsubsection Remote log
18fae2a8
RP
680@kindex eb.log
681@cindex log file for EB29K
682
683The @code{target amd-eb} command creates a file @file{eb.log} in the
684current working directory, to help debug problems with the connection.
685@file{eb.log} records all the output from @code{EBMON}, including echoes
686of the commands sent to it. Running @samp{tail -f} on this file in
687another window often helps to understand trouble with @code{EBMON}, or
688unexpected events on the PC side of the connection.
689
690@end ifset
691
a64a6c2b 692@ifset ST2000
18fae2a8
RP
693@node ST2000 Remote
694@subsection @value{GDBN} with a Tandem ST2000
695
696To connect your ST2000 to the host system, see the manufacturer's
697manual. Once the ST2000 is physically attached, you can run
698
699@example
700target st2000 @var{dev} @var{speed}
701@end example
702
703@noindent
704to establish it as your debugging environment.
705
706The @code{load} and @code{attach} commands are @emph{not} defined for
707this target; you must load your program into the ST2000 as you normally
708would for standalone operation. @value{GDBN} will read debugging information
709(such as symbols) from a separate, debugging version of the program
710available on your host computer.
711@c FIXME!! This is terribly vague; what little content is here is
712@c basically hearsay.
713
714@cindex ST2000 auxiliary commands
715These auxiliary @value{GDBN} commands are available to help you with the ST2000
716environment:
717
718@table @code
719@item st2000 @var{command}
720@kindex st2000 @var{cmd}
721@cindex STDBUG commands (ST2000)
722@cindex commands to STDBUG (ST2000)
723Send a @var{command} to the STDBUG monitor. See the manufacturer's
724manual for available commands.
725
726@item connect
727@cindex connect (to STDBUG)
728Connect the controlling terminal to the STDBUG command monitor. When
729you are done interacting with STDBUG, typing either of two character
730sequences will get you back to the @value{GDBN} command prompt:
731@kbd{@key{RET}~.} (Return, followed by tilde and period) or
732@kbd{@key{RET}~@key{C-d}} (Return, followed by tilde and control-D).
733@end table
734@end ifset
735
736@ifset VXWORKS
737@node VxWorks Remote
738@subsection @value{GDBN} and VxWorks
739@cindex VxWorks
740
741@value{GDBN} enables developers to spawn and debug tasks running on networked
742VxWorks targets from a Unix host. Already-running tasks spawned from
743the VxWorks shell can also be debugged. @value{GDBN} uses code that runs on
744both the UNIX host and on the VxWorks target. The program
745@code{@value{GDBP}} is installed and executed on the UNIX host.
746
747The following information on connecting to VxWorks was current when
748this manual was produced; newer releases of VxWorks may use revised
749procedures.
750
751The remote debugging interface (RDB) routines are installed and executed
752on the VxWorks target. These routines are included in the VxWorks library
753@file{rdb.a} and are incorporated into the system image when source-level
754debugging is enabled in the VxWorks configuration.
755
756@kindex INCLUDE_RDB
757If you wish, you can define @code{INCLUDE_RDB} in the VxWorks
758configuration file @file{configAll.h} to include the RDB interface
759routines and spawn the source debugging task @code{tRdbTask} when
760VxWorks is booted. For more information on configuring and remaking
761VxWorks, see the manufacturer's manual.
762@c VxWorks, see the @cite{VxWorks Programmer's Guide}.
763
764Once you have included the RDB interface in your VxWorks system image
765and set your Unix execution search path to find @value{GDBN}, you are ready
766to run @value{GDBN}. From your UNIX host, type:
767
ed447b95 768@example
18fae2a8 769% @value{GDBP}
ed447b95 770@end example
18fae2a8
RP
771
772@value{GDBN} will come up showing the prompt:
773
ed447b95 774@example
18fae2a8 775(@value{GDBP})
ed447b95 776@end example
18fae2a8
RP
777
778@menu
ed447b95
RP
779* VxWorks Connection:: Connecting to VxWorks
780* VxWorks Download:: VxWorks download
781* VxWorks Attach:: Running tasks
18fae2a8
RP
782@end menu
783
ed447b95 784@node VxWorks Connection
18fae2a8
RP
785@subsubsection Connecting to VxWorks
786
787The @value{GDBN} command @code{target} lets you connect to a VxWorks target on the
788network. To connect to a target whose host name is ``@code{tt}'', type:
789
ed447b95 790@example
18fae2a8 791(@value{GDBP}) target vxworks tt
ed447b95 792@end example
18fae2a8
RP
793
794@value{GDBN} will display a message similar to the following:
795
796@smallexample
797Attaching remote machine across net... Success!
798@end smallexample
799
800@value{GDBN} will then attempt to read the symbol tables of any object modules
801loaded into the VxWorks target since it was last booted. @value{GDBN} locates
802these files by searching the directories listed in the command search
93928b60 803path (@pxref{Environment, ,Your program's environment}); if it fails
18fae2a8
RP
804to find an object file, it will display a message such as:
805
ed447b95 806@example
18fae2a8 807prog.o: No such file or directory.
ed447b95 808@end example
18fae2a8
RP
809
810This will cause the @code{target} command to abort. When this happens,
811you should add the appropriate directory to the search path, with the
812@value{GDBN} command @code{path}, and execute the @code{target} command
813again.
814
ed447b95 815@node VxWorks Download
93928b60 816@subsubsection VxWorks download
18fae2a8
RP
817
818@cindex download to VxWorks
819If you have connected to the VxWorks target and you want to debug an
820object that has not yet been loaded, you can use the @value{GDBN} @code{load}
821command to download a file from UNIX to VxWorks incrementally. The
822object file given as an argument to the @code{load} command is actually
823opened twice: first by the VxWorks target in order to download the code,
824then by @value{GDBN} in order to read the symbol table. This can lead to
825problems if the current working directories on the two systems differ.
826It is simplest to set the working directory on both systems to the
827directory in which the object file resides, and then to reference the
828file by its name, without any path. Thus, to load a program
829@file{prog.o}, residing in @file{wherever/vw/demo/rdb}, on VxWorks type:
830
ed447b95 831@example
18fae2a8 832-> cd "wherever/vw/demo/rdb"
ed447b95 833@end example
18fae2a8
RP
834
835On @value{GDBN} type:
836
ed447b95 837@example
18fae2a8
RP
838(@value{GDBP}) cd wherever/vw/demo/rdb
839(@value{GDBP}) load prog.o
ed447b95 840@end example
18fae2a8
RP
841
842@value{GDBN} will display a response similar to the following:
843
844@smallexample
845Reading symbol data from wherever/vw/demo/rdb/prog.o... done.
846@end smallexample
847
848You can also use the @code{load} command to reload an object module
849after editing and recompiling the corresponding source file. Note that
850this will cause @value{GDBN} to delete all currently-defined breakpoints,
851auto-displays, and convenience variables, and to clear the value
852history. (This is necessary in order to preserve the integrity of
853debugger data structures that reference the target system's symbol
854table.)
855
ed447b95 856@node VxWorks Attach
93928b60 857@subsubsection Running tasks
18fae2a8
RP
858
859@cindex running VxWorks tasks
860You can also attach to an existing task using the @code{attach} command as
861follows:
862
ed447b95 863@example
18fae2a8 864(@value{GDBP}) attach @var{task}
ed447b95 865@end example
18fae2a8
RP
866
867@noindent
868where @var{task} is the VxWorks hexadecimal task ID. The task can be running
869or suspended when you attach to it. If running, it will be suspended at
870the time of attachment.
871@end ifset
872
a64a6c2b
RP
873@ifset H8
874@node Hitachi Remote
875@subsection @value{GDBN} and Hitachi Microprocessors
876@value{GDBN} needs to know these things to talk to your
877Hitachi SH, H8/300, or H8/500:
18fae2a8
RP
878
879@enumerate
880@item
a64a6c2b
RP
881that you want to use @samp{target hms}, the remote debugging interface
882for Hitachi microprocessors (this is the default when GDB is configured
883specifically for the Hitachi SH, H8/300, or H8/500);
18fae2a8
RP
884
885@item
1d7c3357
RP
886what serial device connects your host to your Hitachi board (the first
887serial device available on your host is the default);
18fae2a8
RP
888
889@ignore
890@c this is only for Unix hosts, not currently of interest.
891@item
892what speed to use over the serial device.
893@end ignore
894@end enumerate
895
a64a6c2b 896@ifclear H8EXCLUSIVE
18fae2a8 897@c only for Unix hosts
1d7c3357 898@kindex device
a64a6c2b 899@cindex serial device, Hitachi micros
1d7c3357 900Use the special @code{@value{GDBP}} command @samp{device @var{port}} if you
18fae2a8
RP
901need to explicitly set the serial device. The default @var{port} is the
902first available port on your host. This is only necessary on Unix
903hosts, where it is typically something like @file{/dev/ttya}.
904
905@kindex speed
a64a6c2b 906@cindex serial line speed, Hitachi micros
1d7c3357
RP
907@code{@value{GDBP}} has another special command to set the communications
908speed: @samp{speed @var{bps}}. This command also is only used from Unix
909hosts; on DOS hosts, set the line speed as usual from outside GDB with
910the DOS @kbd{mode} command (for instance, @w{@samp{mode
18fae2a8 911com2:9600,n,8,1,p}} for a 9600 bps connection).
18fae2a8 912
a64a6c2b
RP
913The @samp{device} and @samp{speed} commands are available only when you
914use a Unix host to debug your Hitachi microprocessor programs. If you
915use a DOS host,
916@end ifclear
18fae2a8 917@value{GDBN} depends on an auxiliary terminate-and-stay-resident program
1d7c3357 918called @code{asynctsr} to communicate with the development board
18fae2a8
RP
919through a PC serial port. You must also use the DOS @code{mode} command
920to set up the serial port on the DOS side.
921
a64a6c2b 922@ifset DOSHOST
18fae2a8 923The following sample session illustrates the steps needed to start a
a64a6c2b
RP
924program under @value{GDBN} control on an H8/300. The example uses a
925sample H8/300 program called @file{t.x}. The procedure is the same for
926the Hitachi SH and the H8/500.
18fae2a8 927
1d7c3357 928First hook up your development board. In this example, we use a
18fae2a8
RP
929board attached to serial port @code{COM2}; if you use a different serial
930port, substitute its name in the argument of the @code{mode} command.
931When you call @code{asynctsr}, the auxiliary comms program used by the
932degugger, you give it just the numeric part of the serial port's name;
933for example, @samp{asyncstr 2} below runs @code{asyncstr} on
934@code{COM2}.
935
ed447b95 936@example
18fae2a8
RP
937(eg-C:\H8300\TEST) mode com2:9600,n,8,1,p
938
939Resident portion of MODE loaded
940
941COM2: 9600, n, 8, 1, p
942
943(eg-C:\H8300\TEST) asynctsr 2
ed447b95 944@end example
18fae2a8
RP
945
946@quotation
947@emph{Warning:} We have noticed a bug in PC-NFS that conflicts with
948@code{asynctsr}. If you also run PC-NFS on your DOS host, you may need to
949disable it, or even boot without it, to use @code{asynctsr} to control
1d7c3357 950your development board.
18fae2a8
RP
951@end quotation
952
1d7c3357
RP
953@kindex target hms
954Now that serial communications are set up, and the development board is
955connected, you can start up @value{GDBN}. Call @code{@value{GDBP}} with
956the name of your program as the argument. @code{@value{GDBP}} prompts
957you, as usual, with the prompt @samp{(@value{GDBP})}. Use two special
958commands to begin your debugging session: @samp{target hms} to specify
959cross-debugging to the Hitachi board, and the @code{load} command to
960download your program to the board. @code{load} displays the names of
961the program's sections, and a @samp{*} for each 2K of data downloaded.
962(If you want to refresh @value{GDBN} data on symbols or on the
963executable file without downloading, use the @value{GDBN} commands
964@code{file} or @code{symbol-file}. These commands, and @code{load}
965itself, are described in @ref{Files,,Commands to specify files}.)
18fae2a8
RP
966
967@smallexample
968(eg-C:\H8300\TEST) @value{GDBP} t.x
969GDB is free software and you are welcome to distribute copies
970 of it under certain conditions; type "show copying" to see
971 the conditions.
972There is absolutely no warranty for GDB; type "show warranty"
973for details.
974GDB @value{GDBVN}, Copyright 1992 Free Software Foundation, Inc...
975(gdb) target hms
976Connected to remote H8/300 HMS system.
977(gdb) load t.x
978.text : 0x8000 .. 0xabde ***********
979.data : 0xabde .. 0xad30 *
980.stack : 0xf000 .. 0xf014 *
981@end smallexample
982
983At this point, you're ready to run or debug your program. From here on,
984you can use all the usual @value{GDBN} commands. The @code{break} command
985sets breakpoints; the @code{run} command starts your program;
986@code{print} or @code{x} display data; the @code{continue} command
987resumes execution after stopping at a breakpoint. You can use the
988@code{help} command at any time to find out more about @value{GDBN} commands.
989
990Remember, however, that @emph{operating system} facilities aren't
1d7c3357
RP
991available on your development board; for example, if your program hangs,
992you can't send an interrupt---but you can press the @sc{reset} switch!
18fae2a8 993
1d7c3357 994Use the @sc{reset} button on the development board
18fae2a8
RP
995@itemize @bullet
996@item
997to interrupt your program (don't use @kbd{ctl-C} on the DOS host---it has
1d7c3357 998no way to pass an interrupt signal to the development board); and
18fae2a8
RP
999
1000@item
1001to return to the @value{GDBN} command prompt after your program finishes
1002normally. The communications protocol provides no other way for @value{GDBN}
1003to detect program completion.
1004@end itemize
1005
1006In either case, @value{GDBN} will see the effect of a @sc{reset} on the
1d7c3357 1007development board as a ``normal exit'' of your program.
18fae2a8 1008@end ifset
a64a6c2b 1009@end ifset
18fae2a8 1010
34ae25cd
RP
1011@ifset MIPS
1012@node MIPS Remote
1013@subsection @value{GDBN} and remote MIPS boards
1014
1015@cindex MIPS boards
1016@value{GDBN} can use the MIPS remote debugging protocol to talk to a
1017MIPS board attached to a serial line. This is available when
1018you configure @value{GDBN} with @samp{--target=mips-idt-ecoff}.
1019
1020@kindex target mips @var{port}
1021To run a program on the board, start up @code{@value{GDBP}} with the
1022name of your program as the argument. To connect to the board, use the
1023command @samp{target mips @var{port}}, where @var{port} is the name of
1024the serial port connected to the board. If the program has not already
1025been downloaded to the board, you may use the @code{load} command to
1026download it. You can then use all the usual @value{GDBN} commands.
1027
1028@cindex @code{remotedebug}, MIPS protocol
1029@c FIXME! For this to be useful, you must know something about the MIPS
1030@c FIXME...protocol. Where is it described?
1031You can see some debugging information about communications with the board
1032by setting the @code{remotedebug} variable. If you set it to 1 using
1033@samp{set remotedebug 1} every packet will be displayed. If you set it
1034to 2 every character will be displayed. You can check the current value
1035at any time with the command @samp{show remotedebug}.
1036
1037@kindex set mipsfpu off
1038@cindex MIPS remote floating point
1039@cindex floating point, MIPS remote
1040If your target board does not support the MIPS floating point
1041coprocessor, you should use the command @samp{set mipsfpu off} (you may
1042wish to put this in your @value{GDBINIT} file). This will tell
1043@value{GDBN} how to find the return value of functions which return
1044floating point values, and tell it to call functions on the board
1045without saving the floating point registers.
1046@end ifset
1047
fe715d06
RP
1048@ifset SIMS
1049@node Simulator
1050@subsection Simulated CPU target
18fae2a8 1051
fe715d06
RP
1052@ifset GENERIC
1053@cindex simulator
1054@cindex simulator, Z8000
fe715d06 1055@cindex Z8000 simulator
a64a6c2b 1056@cindex simulator, H8/300 or H8/500
1d7c3357 1057@cindex H8/300 or H8/500 simulator
a64a6c2b
RP
1058@cindex simulator, Hitachi SH
1059@cindex Hitachi SH simulator
fe715d06
RP
1060@cindex CPU simulator
1061For some configurations, @value{GDBN} includes a CPU simulator that you
1062can use instead of a hardware CPU to debug your programs. Currently,
1063a simulator is available when @value{GDBN} is configured to debug Zilog
a64a6c2b 1064Z8000 or Hitachi microprocessor targets.
fe715d06
RP
1065@end ifset
1066
1067@ifclear GENERIC
a64a6c2b 1068@ifset H8
1d7c3357
RP
1069@cindex simulator, H8/300 or H8/500
1070@cindex Hitachi H8/300 or H8/500 simulator
a64a6c2b
RP
1071@cindex simulator, Hitachi SH
1072@cindex Hitachi SH simulator
1073When configured for debugging Hitachi microprocessor targets,
1074@value{GDBN} includes a CPU simulator for the target chip (a Hitachi SH,
1075H8/300, or H8/500).
fe715d06
RP
1076@end ifset
1077
a64a6c2b 1078@ifset Z8K
18fae2a8
RP
1079@cindex simulator, Z8000
1080@cindex Zilog Z8000 simulator
e55d2728
RP
1081When configured for debugging Zilog Z8000 targets, @value{GDBN} includes
1082a Z8000 simulator.
fe715d06
RP
1083@end ifset
1084@end ifclear
1085
a64a6c2b 1086@ifset Z8K
fe715d06
RP
1087For the Z8000 family, @samp{target sim} simulates either the Z8002 (the
1088unsegmented variant of the Z8000 architecture) or the Z8001 (the
1089segmented variant). The simulator recognizes which architecture is
1090appropriate by inspecting the object code.
1091@end ifset
18fae2a8
RP
1092
1093@table @code
e55d2728
RP
1094@item target sim
1095@kindex sim
1096@kindex target sim
fe715d06
RP
1097Debug programs on a simulated CPU
1098@ifset GENERIC
1099(which CPU depends on the @value{GDBN} configuration)
1100@end ifset
18fae2a8
RP
1101@end table
1102
1103@noindent
fe715d06
RP
1104After specifying this target, you can debug programs for the simulated
1105CPU in the same style as programs for your host computer; use the
1106@code{file} command to load a new program image, the @code{run} command
1107to run your program, and so on.
18fae2a8 1108
fe715d06 1109As well as making available all the usual machine registers (see
18fae2a8
RP
1110@code{info reg}), this debugging target provides three additional items
1111of information as specially named registers:
1112
1113@table @code
1114@item cycles
1115Counts clock-ticks in the simulator.
1116
1117@item insts
1118Counts instructions run in the simulator.
1119
1120@item time
1121Execution time in 60ths of a second.
1122@end table
1123
1124You can refer to these values in @value{GDBN} expressions with the usual
1125conventions; for example, @w{@samp{b fputc if $cycles>5000}} sets a
1126conditional breakpoint that will suspend only after at least 5000
1127simulated clock ticks.
1128@end ifset
This page took 0.084847 seconds and 4 git commands to generate.