1 /* Remote debugging interface for Tandem ST2000 phone switch, for GDB.
2 Copyright 1990, 1991, 1992 Free Software Foundation, Inc.
3 Contributed by Cygnus Support. Written by Jim Kingdon for Cygnus.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
21 /* This file was derived from remote-eb.c, which did a similar job, but for
22 an AMD-29K running EBMON. That file was in turn derived from remote.c
23 as mentioned in the following comment (left in for comic relief):
25 "This is like remote.c but is for an esoteric situation--
26 having an a29k board in a PC hooked up to a unix machine with
27 a serial line, and running ctty com1 on the PC, through which
28 the unix machine can run ebmon. Not to mention that the PC
29 has PC/NFS, so it can access the same executables that gdb can,
30 over the net in real time."
32 In reality, this module talks to a debug monitor called 'STDEBUG', which
33 runs in a phone switch. We communicate with STDEBUG via either a direct
34 serial line, or a TCP (or possibly TELNET) stream to a terminal multiplexor,
35 which in turn talks to the phone switch. */
41 #ifdef ANSI_PROTOTYPES
47 #include "gdb_string.h"
48 #include <sys/types.h>
51 extern struct target_ops st2000_ops
; /* Forward declaration */
53 static void st2000_close();
54 static void st2000_fetch_register();
55 static void st2000_store_register();
57 #define LOG_FILE "st2000.log"
58 #if defined (LOG_FILE)
62 static int timeout
= 24;
64 /* Descriptor for I/O to remote machine. Initialize it to -1 so that
65 st2000_open knows that we don't have a file open when the program
68 static serial_t st2000_desc
;
70 /* Send data to stdebug. Works just like printf. */
73 #ifdef ANSI_PROTOTYPES
74 printf_stdebug(char *pattern
, ...)
76 printf_stdebug(va_alist
)
83 #ifdef ANSI_PROTOTYPES
84 va_start(args
, pattern
);
88 pattern
= va_arg(args
, char *);
91 vsprintf(buf
, pattern
, args
);
94 if (SERIAL_WRITE(st2000_desc
, buf
, strlen(buf
)))
95 fprintf(stderr
, "SERIAL_WRITE failed: %s\n", safe_strerror(errno
));
98 /* Read a character from the remote system, doing all the fancy timeout
107 c
= SERIAL_READCHAR(st2000_desc
, timeout
);
110 putc(c
& 0x7f, log_file
);
116 if (c
== SERIAL_TIMEOUT
)
119 return c
; /* Polls shouldn't generate timeout errors */
121 error("Timeout reading from remote system.");
124 perror_with_name("remote-st2000");
127 /* Scan input from the remote system, until STRING is found. If DISCARD is
128 non-zero, then discard non-matching input, else print it out.
129 Let the user break out immediately. */
131 expect(string
, discard
)
141 c
= readchar(timeout
);
154 fwrite(string
, 1, (p
- 1) - string
, stdout
);
163 /* Keep discarding input until we see the STDEBUG prompt.
165 The convention for dealing with the prompt is that you
167 o *then* wait for the prompt.
169 Thus the last thing that a procedure does with the serial line
170 will be an expect_prompt(). Exception: st2000_resume does not
171 wait for the prompt, because the terminal is being handed over
172 to the inferior. However, the next thing which happens after that
173 is a st2000_wait which does wait for the prompt.
174 Note that this includes abnormal exit, e.g. error(). This is
175 necessary to prevent getting into states from which we can't
178 expect_prompt(discard
)
181 #if defined (LOG_FILE)
182 /* This is a convenient place to do this. The idea is to do it often
183 enough that we never lose much data if we terminate abnormally. */
186 expect ("dbug> ", discard
);
189 /* Get a hex digit from the remote system & return its value.
190 If ignore_space is nonzero, ignore spaces (not newline, tab, etc). */
192 get_hex_digit(ignore_space
)
198 ch
= readchar(timeout
);
199 if (ch
>= '0' && ch
<= '9')
201 else if (ch
>= 'A' && ch
<= 'F')
202 return ch
- 'A' + 10;
203 else if (ch
>= 'a' && ch
<= 'f')
204 return ch
- 'a' + 10;
205 else if (ch
== ' ' && ignore_space
)
210 error("Invalid hex digit from remote system.");
215 /* Get a byte from stdebug and put it in *BYT. Accept any number
223 val
= get_hex_digit (1) << 4;
224 val
|= get_hex_digit (0);
228 /* Get N 32-bit words from remote, each preceded by a space,
229 and put them in registers starting at REGNO. */
231 get_hex_regs (n
, regno
)
238 for (i
= 0; i
< n
; i
++)
243 for (j
= 0; j
< 8; j
++)
244 val
= (val
<< 4) + get_hex_digit (j
== 0);
245 supply_register (regno
++, (char *) &val
);
249 /* This is called not only when we first attach, but also when the
250 user types "run" after having attached. */
252 st2000_create_inferior (execfile
, args
, env
)
260 error("Can't pass arguments to remote STDEBUG process");
262 if (execfile
== 0 || exec_bfd
== 0)
263 error("No exec file specified");
265 entry_pt
= (int) bfd_get_start_address (exec_bfd
);
267 /* The "process" (board) is already stopped awaiting our commands, and
268 the program is already downloaded. We just set its PC and go. */
270 clear_proceed_status ();
272 /* Tell wait_for_inferior that we've started a new process. */
273 init_wait_for_inferior ();
275 /* Set up the "saved terminal modes" of the inferior
276 based on what modes we are starting it with. */
277 target_terminal_init ();
279 /* Install inferior's terminal modes. */
280 target_terminal_inferior ();
282 /* insert_step_breakpoint (); FIXME, do we need this? */
284 proceed ((CORE_ADDR
)entry_pt
, TARGET_SIGNAL_DEFAULT
, 0);
287 /* Open a connection to a remote debugger.
288 NAME is the filename used for communication. */
290 static int baudrate
= 9600;
291 static char dev_name
[100];
294 st2000_open(args
, from_tty
)
301 target_preopen(from_tty
);
303 n
= sscanf(args
, " %s %d %s", dev_name
, &baudrate
, junk
);
306 error("Bad arguments. Usage: target st2000 <device> <speed>\n\
307 or target st2000 <host> <port>\n");
311 st2000_desc
= SERIAL_OPEN(dev_name
);
314 perror_with_name(dev_name
);
316 SERIAL_SETBAUDRATE(st2000_desc
, baudrate
);
318 SERIAL_RAW(st2000_desc
);
320 push_target(&st2000_ops
);
322 #if defined (LOG_FILE)
323 log_file
= fopen (LOG_FILE
, "w");
324 if (log_file
== NULL
)
325 perror_with_name (LOG_FILE
);
328 /* Hello? Are you there? */
329 printf_stdebug("\003"); /* ^C wakes up dbug */
334 printf("Remote %s connected to %s\n", target_shortname
,
338 /* Close out all files and local state before this target loses control. */
341 st2000_close (quitting
)
344 SERIAL_CLOSE(st2000_desc
);
346 #if defined (LOG_FILE)
348 if (ferror(log_file
))
349 fprintf(stderr
, "Error writing log file.\n");
350 if (fclose(log_file
) != 0)
351 fprintf(stderr
, "Error closing log file.\n");
356 /* Terminate the open connection to the remote debugger.
357 Use this when you want to detach and do something else
360 st2000_detach (from_tty
)
363 pop_target(); /* calls st2000_close to do the real work */
365 printf ("Ending remote %s debugging\n", target_shortname
);
368 /* Tell the remote machine to resume. */
371 st2000_resume (pid
, step
, sig
)
373 enum target_signal sig
;
377 printf_stdebug ("ST\r");
378 /* Wait for the echo. */
383 printf_stdebug ("GO\r");
384 /* Swallow the echo. */
389 /* Wait until the remote machine stops, then return,
390 storing status in STATUS just as `wait' would. */
394 struct target_waitstatus
*status
;
396 int old_timeout
= timeout
;
398 status
->kind
= TARGET_WAITKIND_EXITED
;
399 status
->value
.integer
= 0;
401 timeout
= 0; /* Don't time out -- user program is running. */
403 expect_prompt(0); /* Wait for prompt, outputting extraneous text */
405 status
->kind
= TARGET_WAITKIND_STOPPED
;
406 status
->value
.sig
= TARGET_SIGNAL_TRAP
;
408 timeout
= old_timeout
;
413 /* Return the name of register number REGNO in the form input and output by
414 STDEBUG. Currently, REGISTER_NAMES just happens to contain exactly what
415 STDEBUG wants. Lets take advantage of that just as long as possible! */
427 for (p
= reg_names
[regno
]; *p
; p
++)
434 /* Read the remote registers into the block REGS. */
437 st2000_fetch_registers ()
441 /* Yeah yeah, I know this is horribly inefficient. But it isn't done
442 very often... I'll clean it up later. */
444 for (regno
= 0; regno
<= PC_REGNUM
; regno
++)
445 st2000_fetch_register(regno
);
448 /* Fetch register REGNO, or all registers if REGNO is -1.
449 Returns errno value. */
451 st2000_fetch_register (regno
)
455 st2000_fetch_registers ();
458 char *name
= get_reg_name (regno
);
459 printf_stdebug ("DR %s\r", name
);
462 get_hex_regs (1, regno
);
468 /* Store the remote registers from the contents of the block REGS. */
471 st2000_store_registers ()
475 for (regno
= 0; regno
<= PC_REGNUM
; regno
++)
476 st2000_store_register(regno
);
478 registers_changed ();
481 /* Store register REGNO, or all if REGNO == 0.
482 Return errno value. */
484 st2000_store_register (regno
)
488 st2000_store_registers ();
491 printf_stdebug ("PR %s %x\r", get_reg_name (regno
),
492 read_register (regno
));
498 /* Get ready to modify the registers array. On machines which store
499 individual registers, this doesn't need to do anything. On machines
500 which store all the registers in one fell swoop, this makes sure
501 that registers contains all the registers from the program being
505 st2000_prepare_to_store ()
507 /* Do nothing, since we can store individual regs */
513 printf ("\tAttached to %s at %d baud.\n",
517 /* Copy LEN bytes of data from debugger memory at MYADDR
518 to inferior's memory at MEMADDR. Returns length moved. */
520 st2000_write_inferior_memory (memaddr
, myaddr
, len
)
522 unsigned char *myaddr
;
527 for (i
= 0; i
< len
; i
++)
529 printf_stdebug ("PM.B %x %x\r", memaddr
+ i
, myaddr
[i
]);
535 /* Read LEN bytes from inferior memory at MEMADDR. Put the result
536 at debugger address MYADDR. Returns length moved. */
538 st2000_read_inferior_memory(memaddr
, myaddr
, len
)
545 /* Number of bytes read so far. */
548 /* Starting address of this pass. */
549 unsigned long startaddr
;
551 /* Number of bytes to read in this pass. */
554 /* Note that this code works correctly if startaddr is just less
555 than UINT_MAX (well, really CORE_ADDR_MAX if there was such a
556 thing). That is, something like
557 st2000_read_bytes (CORE_ADDR_MAX - 4, foo, 4)
558 works--it never adds len to memaddr and gets 0. */
559 /* However, something like
560 st2000_read_bytes (CORE_ADDR_MAX - 3, foo, 4)
561 doesn't need to work. Detect it and give up if there's an attempt
563 if (((memaddr
- 1) + len
) < memaddr
) {
573 if ((startaddr
% 16) != 0)
574 len_this_pass
-= startaddr
% 16;
575 if (len_this_pass
> (len
- count
))
576 len_this_pass
= (len
- count
);
578 printf_stdebug ("DI.L %x %x\r", startaddr
, len_this_pass
);
581 for (i
= 0; i
< len_this_pass
; i
++)
582 get_hex_byte (&myaddr
[count
++]);
586 startaddr
+= len_this_pass
;
591 /* FIXME-someday! Merge these two. */
593 st2000_xfer_inferior_memory (memaddr
, myaddr
, len
, write
, target
)
598 struct target_ops
*target
; /* ignored */
601 return st2000_write_inferior_memory (memaddr
, myaddr
, len
);
603 return st2000_read_inferior_memory (memaddr
, myaddr
, len
);
607 st2000_kill (args
, from_tty
)
611 return; /* Ignore attempts to kill target system */
614 /* Clean up when a program exits.
616 The program actually lives on in the remote processor's RAM, and may be
617 run again without a download. Don't leave it full of breakpoint
621 st2000_mourn_inferior ()
623 remove_breakpoints ();
624 unpush_target (&st2000_ops
);
625 generic_mourn_inferior (); /* Do all the proper things now */
628 #define MAX_STDEBUG_BREAKPOINTS 16
630 extern int memory_breakpoint_size
;
631 static CORE_ADDR breakaddr
[MAX_STDEBUG_BREAKPOINTS
] = {0};
634 st2000_insert_breakpoint (addr
, shadow
)
640 for (i
= 0; i
<= MAX_STDEBUG_BREAKPOINTS
; i
++)
641 if (breakaddr
[i
] == 0)
645 st2000_read_inferior_memory(addr
, shadow
, memory_breakpoint_size
);
646 printf_stdebug("BR %x H\r", addr
);
651 fprintf(stderr
, "Too many breakpoints (> 16) for STDBUG\n");
656 st2000_remove_breakpoint (addr
, shadow
)
662 for (i
= 0; i
< MAX_STDEBUG_BREAKPOINTS
; i
++)
663 if (breakaddr
[i
] == addr
)
667 printf_stdebug("CB %d\r", i
);
672 fprintf(stderr
, "Can't find breakpoint associated with 0x%x\n", addr
);
677 /* Put a command string, in args, out to STDBUG. Output from STDBUG is placed
678 on the users terminal until the prompt is seen. */
681 st2000_command (args
, fromtty
)
686 error("st2000 target not open.");
689 error("Missing command.");
691 printf_stdebug("%s\r", args
);
695 /* Connect the user directly to STDBUG. This command acts just like the
696 'cu' or 'tip' command. Use <CR>~. or <CR>~^D to break out. */
698 /*static struct ttystate ttystate;*/
703 printf("\r\n[Exiting connect mode]\r\n");
704 /* SERIAL_RESTORE(0, &ttystate);*/
708 /* This all should now be in serial.c */
711 connect_command (args
, fromtty
)
723 error("st2000 target not open.");
726 fprintf("This command takes no args. They have been ignored.\n");
728 printf("[Entering connect mode. Use ~. or ~^D to escape]\n");
730 serial_raw(0, &ttystate
);
732 make_cleanup(cleanup_tty
, 0);
741 FD_SET(st2000_desc
, &readfds
);
742 numfds
= select(sizeof(readfds
)*8, &readfds
, 0, 0, 0);
747 perror_with_name("select");
749 if (FD_ISSET(0, &readfds
))
750 { /* tty input, send to stdebug */
753 perror_with_name("connect");
755 printf_stdebug("%c", c
);
769 if (c
== '.' || c
== '\004')
776 if (FD_ISSET(st2000_desc
, &readfds
))
791 /* Define the target subroutine names */
793 struct target_ops st2000_ops
= {
795 "Remote serial Tandem ST2000 target",
796 "Use a remote computer running STDEBUG connected by a serial line,\n\
797 or a network connection.\n\
798 Arguments are the name of the device for the serial line,\n\
799 the speed to connect at in bits per second.",
806 st2000_fetch_register
,
807 st2000_store_register
,
808 st2000_prepare_to_store
,
809 st2000_xfer_inferior_memory
,
811 st2000_insert_breakpoint
,
812 st2000_remove_breakpoint
, /* Breakpoints */
817 0, /* Terminal handling */
820 0, /* lookup_symbol */
821 st2000_create_inferior
,
822 st2000_mourn_inferior
,
824 0, /* notice_signals */
832 1, /* all mem, mem, stack, regs, exec */
834 0, /* Section pointers */
835 OPS_MAGIC
, /* Always the last thing */
839 _initialize_remote_st2000 ()
841 add_target (&st2000_ops
);
842 add_com ("st2000 <command>", class_obscure
, st2000_command
,
843 "Send a command to the STDBUG monitor.");
844 add_com ("connect", class_obscure
, connect_command
,
845 "Connect the terminal directly up to the STDBUG command monitor.\n\
846 Use <CR>~. or <CR>~^D to break out.");