1 /* Remote debugging interface for Array Tech RAID controller..
2 Copyright 90, 91, 92, 93, 94, 1995 Free Software Foundation, Inc.
3 Contributed by Cygnus Support. Written by Rob Savoye for Cygnus.
5 This module talks to a debug monitor called 'MONITOR', which
6 We communicate with MONITOR via either a direct serial line, or a TCP
7 (or possibly TELNET) stream to a terminal multiplexor,
8 which in turn talks to the target board.
10 This file is part of GDB.
12 This program is free software; you can redistribute it and/or modify
13 it under the terms of the GNU General Public License as published by
14 the Free Software Foundation; either version 2 of the License, or
15 (at your option) any later version.
17 This program is distributed in the hope that it will be useful,
18 but WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 GNU General Public License for more details.
22 You should have received a copy of the GNU General Public License
23 along with this program; if not, write to the Free Software
24 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
31 #ifdef ANSI_PROTOTYPES
38 #include <sys/types.h>
39 #include "gdb_string.h"
43 #include "remote-utils.h"
47 #define ARRAY_PROMPT ">> "
49 #define SWAP_TARGET_AND_HOST(buffer,len) \
52 if (TARGET_BYTE_ORDER != HOST_BYTE_ORDER) \
55 char *p = (char *)(buffer); \
56 char *q = ((char *)(buffer)) + len - 1; \
57 for (; p < q; p++, q--) \
67 static void debuglogs
PARAMS((int, char *, ...));
68 static void array_open();
69 static void array_close();
70 static void array_detach();
71 static void array_attach();
72 static void array_resume();
73 static void array_fetch_register();
74 static void array_store_register();
75 static void array_fetch_registers();
76 static void array_store_registers();
77 static void array_prepare_to_store();
78 static void array_files_info();
79 static void array_kill();
80 static void array_create_inferior();
81 static void array_mourn_inferior();
82 static void make_gdb_packet();
83 static int array_xfer_memory();
84 static int array_wait();
85 static int array_insert_breakpoint();
86 static int array_remove_breakpoint();
89 static int from_hex();
90 static int array_send_packet();
91 static int array_get_packet();
92 static unsigned long ascii2hexword();
93 static char *hexword2ascii();
97 #define LOG_FILE "monitor.log"
98 #if defined (LOG_FILE)
102 static int timeout
= 30;
103 /* Having this larger than 400 causes us to be incompatible with m68k-stub.c
104 and i386-stub.c. Normally, no one would notice because it only matters
105 for writing large chunks of memory (e.g. in downloads). Also, this needs
106 to be more than 400 if required to hold the registers (see below, where
107 we round it up based on REGISTER_BYTES). */
111 * Descriptor for I/O to remote machine. Initialize it to NULL so that
112 * array_open knows that we don't have a file open when the program starts.
114 serial_t array_desc
= NULL
;
117 * this array of registers need to match the indexes used by GDB. The
118 * whole reason this exists is cause the various ROM monitors use
119 * different strings than GDB does, and doesn't support all the
120 * registers either. So, typing "info reg sp" becomes a "r30".
122 extern char *tmp_mips_processor_type
;
123 extern int mips_set_processor_type();
125 static struct target_ops array_ops
;
126 static void init_array_ops(void)
128 array_ops
.to_shortname
= "array";
129 array_ops
.to_longname
=
130 "Debug using the standard GDB remote protocol for the Array Tech target.",
132 "Debug using the standard GDB remote protocol for the Array Tech target.\n\
133 Specify the serial device it is connected to (e.g. /dev/ttya)." ;
134 array_ops
.to_open
= array_open
;
135 array_ops
.to_close
= array_close
;
136 array_ops
.to_attach
= NULL
;
137 array_ops
.to_detach
= array_detach
;
138 array_ops
.to_resume
= array_resume
;
139 array_ops
.to_wait
= array_wait
;
140 array_ops
.to_fetch_registers
= array_fetch_registers
;
141 array_ops
.to_store_registers
= array_store_registers
;
142 array_ops
.to_prepare_to_store
= array_prepare_to_store
;
143 array_ops
.to_xfer_memory
= array_xfer_memory
;
144 array_ops
.to_files_info
= array_files_info
;
145 array_ops
.to_insert_breakpoint
= array_insert_breakpoint
;
146 array_ops
.to_remove_breakpoint
= array_remove_breakpoint
;
147 array_ops
.to_terminal_init
= 0;
148 array_ops
.to_terminal_inferior
= 0;
149 array_ops
.to_terminal_ours_for_output
= 0;
150 array_ops
.to_terminal_ours
= 0;
151 array_ops
.to_terminal_info
= 0;
152 array_ops
.to_kill
= array_kill
;
153 array_ops
.to_load
= 0;
154 array_ops
.to_lookup_symbol
= 0;
155 array_ops
.to_create_inferior
= array_create_inferior
;
156 array_ops
.to_mourn_inferior
= array_mourn_inferior
;
157 array_ops
.to_can_run
= 0;
158 array_ops
.to_notice_signals
= 0;
159 array_ops
.to_thread_alive
= 0;
160 array_ops
.to_stop
= 0;
161 array_ops
.to_stratum
= process_stratum
;
162 array_ops
.DONT_USE
= 0;
163 array_ops
.to_has_all_memory
= 1;
164 array_ops
.to_has_memory
= 1;
165 array_ops
.to_has_stack
= 1;
166 array_ops
.to_has_registers
= 1;
167 array_ops
.to_has_execution
= 1;
168 array_ops
.to_sections
= 0;
169 array_ops
.to_sections_end
= 0;
170 array_ops
.to_magic
= OPS_MAGIC
;
174 * printf_monitor -- send data to monitor. Works just like printf.
177 #ifdef ANSI_PROTOTYPES
178 printf_monitor(char *pattern
, ...)
180 printf_monitor(va_alist
)
188 #ifdef ANSI_PROTOTYPES
189 va_start(args
, pattern
);
193 pattern
= va_arg(args
, char *);
196 vsprintf(buf
, pattern
, args
);
198 debuglogs (1, "printf_monitor(), Sending: \"%s\".", buf
);
200 if (strlen(buf
) > PBUFSIZ
)
201 error ("printf_monitor(): string too long");
202 if (SERIAL_WRITE(array_desc
, buf
, strlen(buf
)))
203 fprintf(stderr
, "SERIAL_WRITE failed: %s\n", safe_strerror(errno
));
206 * write_monitor -- send raw data to monitor.
209 write_monitor(data
, len
)
213 if (SERIAL_WRITE(array_desc
, data
, len
))
214 fprintf(stderr
, "SERIAL_WRITE failed: %s\n", safe_strerror(errno
));
216 *(data
+ len
+1) = '\0';
217 debuglogs (1, "write_monitor(), Sending: \"%s\".", data
);
222 * debuglogs -- deal with debugging info to multiple sources. This takes
223 * two real args, the first one is the level to be compared against
224 * the sr_get_debug() value, the second arg is a printf buffer and args
225 * to be formatted and printed. A CR is added after each string is printed.
228 #ifdef ANSI_PROTOTYPES
229 debuglogs(int level
, char *pattern
, ...)
237 unsigned char buf
[PBUFSIZ
];
238 char newbuf
[PBUFSIZ
];
241 #ifdef ANSI_PROTOTYPES
242 va_start(args
, pattern
);
247 level
= va_arg(args
, int); /* get the debug level */
248 pattern
= va_arg(args
, char *); /* get the printf style pattern */
251 if ((level
<0) || (level
> 100)) {
252 error ("Bad argument passed to debuglogs(), needs debug level");
256 vsprintf(buf
, pattern
, args
); /* format the string */
258 /* convert some characters so it'll look right in the log */
260 for (i
= 0 ; buf
[i
] != '\0'; i
++) {
262 error ("Debug message too long");
264 case '\n': /* newlines */
268 case '\r': /* carriage returns */
272 case '\033': /* escape */
280 case '\b': /* backspace */
284 default: /* no change */
288 if (buf
[i
] < 26) { /* modify control characters */
293 if (buf
[i
] >= 128) { /* modify control characters */
299 *p
= '\0'; /* terminate the string */
301 if (sr_get_debug() > level
)
302 printf_unfiltered ("%s\n", newbuf
);
304 #ifdef LOG_FILE /* write to the monitor log */
305 if (log_file
!= 0x0) {
306 fputs (newbuf
, log_file
);
307 fputc ('\n', log_file
);
313 /* readchar -- read a character from the remote system, doing all the fancy
322 c
= SERIAL_READCHAR(array_desc
, abs(timeout
));
324 if (sr_get_debug() > 5) {
326 debuglogs (5, "readchar: timeout = %d\n", timeout
);
331 putc(c
& 0x7f, log_file
);
337 if (c
== SERIAL_TIMEOUT
) {
339 return c
; /* Polls shouldn't generate timeout errors */
340 error("Timeout reading from remote system.");
342 fputs ("ERROR: Timeout reading from remote system", log_file
);
345 perror_with_name("readchar");
349 * expect -- scan input from the remote system, until STRING is found.
350 * If DISCARD is non-zero, then discard non-matching input, else print
351 * it out. Let the user break out immediately.
354 expect (string
, discard
)
362 debuglogs (1, "Expecting \"%s\".", string
);
366 c
= readchar(timeout
);
372 debuglogs (4, "Matched");
377 fputc_unfiltered (c
, gdb_stdout
);
384 /* Keep discarding input until we see the MONITOR array_cmds->prompt.
386 The convention for dealing with the expect_prompt is that you
388 o *then* wait for the expect_prompt.
390 Thus the last thing that a procedure does with the serial line
391 will be an expect_prompt(). Exception: array_resume does not
392 wait for the expect_prompt, because the terminal is being handed over
393 to the inferior. However, the next thing which happens after that
394 is a array_wait which does wait for the expect_prompt.
395 Note that this includes abnormal exit, e.g. error(). This is
396 necessary to prevent getting into states from which we can't
399 expect_prompt(discard
)
402 expect (ARRAY_PROMPT
, discard
);
406 * junk -- ignore junk characters. Returns a 1 if junk, 0 otherwise
419 if (sr_get_debug() > 5)
420 debuglogs (5, "Ignoring \'%c\'.", ch
);
423 if (sr_get_debug() > 5)
424 debuglogs (5, "Accepting \'%c\'.", ch
);
430 * get_hex_digit -- Get a hex digit from the remote system & return its value.
431 * If ignore is nonzero, ignore spaces, newline & tabs.
434 get_hex_digit(ignore
)
439 ch
= readchar(timeout
);
442 if (sr_get_debug() > 4) {
443 debuglogs (4, "get_hex_digit() got a 0x%x(%c)", ch
, ch
);
445 #ifdef LOG_FILE /* write to the monitor log */
446 if (log_file
!= 0x0) {
447 fputs ("get_hex_digit() got a 0x", log_file
);
448 fputc (ch
, log_file
);
449 fputc ('\n', log_file
);
455 if (ch
>= '0' && ch
<= '9')
457 else if (ch
>= 'A' && ch
<= 'F')
458 return ch
- 'A' + 10;
459 else if (ch
>= 'a' && ch
<= 'f')
460 return ch
- 'a' + 10;
461 else if (ch
== ' ' && ignore
)
465 debuglogs (4, "Invalid hex digit from remote system. (0x%x)", ch
);
466 error("Invalid hex digit from remote system. (0x%x)", ch
);
471 /* get_hex_byte -- Get a byte from monitor and put it in *BYT.
472 * Accept any number leading spaces.
480 val
= get_hex_digit (1) << 4;
481 debuglogs (4, "get_hex_byte() -- Read first nibble 0x%x", val
);
483 val
|= get_hex_digit (0);
484 debuglogs (4, "get_hex_byte() -- Read second nibble 0x%x", val
);
487 debuglogs (4, "get_hex_byte() -- Read a 0x%x", val
);
491 * get_hex_word -- Get N 32-bit words from remote, each preceded by a space,
492 * and put them in registers starting at REGNO.
503 if (HOST_BYTE_ORDER
== BIG_ENDIAN
) {
505 for (i
= 0; i
< 8; i
++)
506 val
= (val
<< 4) + get_hex_digit (i
== 0);
509 for (i
= 7; i
>= 0; i
--)
510 val
= (val
<< 4) + get_hex_digit (i
== 0);
514 debuglogs (4, "get_hex_word() got a 0x%x for a %s host.", val
, (HOST_BYTE_ORDER
== BIG_ENDIAN
) ? "big endian" : "little endian");
519 /* This is called not only when we first attach, but also when the
520 user types "run" after having attached. */
522 array_create_inferior (execfile
, args
, env
)
530 error("Can't pass arguments to remote MONITOR process");
532 if (execfile
== 0 || exec_bfd
== 0)
533 error("No exec file specified");
535 entry_pt
= (int) bfd_get_start_address (exec_bfd
);
537 /* The "process" (board) is already stopped awaiting our commands, and
538 the program is already downloaded. We just set its PC and go. */
540 clear_proceed_status ();
542 /* Tell wait_for_inferior that we've started a new process. */
543 init_wait_for_inferior ();
545 /* Set up the "saved terminal modes" of the inferior
546 based on what modes we are starting it with. */
547 target_terminal_init ();
549 /* Install inferior's terminal modes. */
550 target_terminal_inferior ();
552 /* insert_step_breakpoint (); FIXME, do we need this? */
555 proceed ((CORE_ADDR
)entry_pt
, TARGET_SIGNAL_DEFAULT
, 0);
559 * array_open -- open a connection to a remote debugger.
560 * NAME is the filename used for communication.
562 static int baudrate
= 9600;
563 static char dev_name
[100];
566 array_open(args
, name
, from_tty
)
571 char packet
[PBUFSIZ
];
574 error ("Use `target %s DEVICE-NAME' to use a serial port, or \n\
575 `target %s HOST-NAME:PORT-NUMBER' to use a network connection.", name
, name
);
580 target_preopen (from_tty
);
581 unpush_target (&array_ops
);
583 tmp_mips_processor_type
= "lsi33k"; /* change the default from r3051 */
584 mips_set_processor_type_command ("lsi33k", 0);
586 strcpy(dev_name
, args
);
587 array_desc
= SERIAL_OPEN(dev_name
);
589 if (array_desc
== NULL
)
590 perror_with_name(dev_name
);
592 if (baud_rate
!= -1) {
593 if (SERIAL_SETBAUDRATE (array_desc
, baud_rate
)) {
594 SERIAL_CLOSE (array_desc
);
595 perror_with_name (name
);
599 SERIAL_RAW(array_desc
);
601 #if defined (LOG_FILE)
602 log_file
= fopen (LOG_FILE
, "w");
603 if (log_file
== NULL
)
604 perror_with_name (LOG_FILE
);
605 fprintf_filtered (log_file
, "GDB %s (%s", version
);
606 fprintf_filtered (log_file
, " --target %s)\n", array_ops
.to_shortname
);
607 fprintf_filtered (log_file
, "Remote target %s connected to %s\n\n", array_ops
.to_shortname
, dev_name
);
610 /* see if the target is alive. For a ROM monitor, we can just try to force the
611 expect_prompt to print a few times. For the GDB remote protocol, the application
612 being debugged is sitting at a breakpoint and waiting for GDB to initialize
613 the connection. We force it to give us an empty packet to see if it's alive.
615 debuglogs (3, "Trying to ACK the target's debug stub");
616 /* unless your are on the new hardware, the old board won't initialize
617 because the '@' doesn't flush output like it does on the new ROMS.
619 printf_monitor ("@"); /* ask for the last signal */
620 expect_prompt(1); /* See if we get a expect_prompt */
621 #ifdef TEST_ARRAY /* skip packet for testing */
622 make_gdb_packet (packet
, "?"); /* ask for a bogus packet */
623 if (array_send_packet (packet
) == 0)
624 error ("Couldn't transmit packet\n");
625 printf_monitor ("@\n"); /* force it to flush stdout */
626 expect_prompt(1); /* See if we get a expect_prompt */
628 push_target (&array_ops
);
630 printf("Remote target %s connected to %s\n", array_ops
.to_shortname
, dev_name
);
634 * array_close -- Close out all files and local state before this
635 * target loses control.
639 array_close (quitting
)
642 SERIAL_CLOSE(array_desc
);
645 debuglogs (1, "array_close (quitting=%d)", quitting
);
647 #if defined (LOG_FILE)
649 if (ferror(log_file
))
650 printf_filtered ("Error writing log file.\n");
651 if (fclose(log_file
) != 0)
652 printf_filtered ("Error closing log file.\n");
658 * array_detach -- terminate the open connection to the remote
659 * debugger. Use this when you want to detach and do something
660 * else with your gdb.
663 array_detach (from_tty
)
667 debuglogs (1, "array_detach ()");
669 pop_target(); /* calls array_close to do the real work */
671 printf ("Ending remote %s debugging\n", target_shortname
);
675 * array_attach -- attach GDB to the target.
678 array_attach (args
, from_tty
)
683 printf ("Starting remote %s debugging\n", target_shortname
);
685 debuglogs (1, "array_attach (args=%s)", args
);
687 printf_monitor ("go %x\n");
688 /* swallow the echo. */
689 expect ("go %x\n", 1);
693 * array_resume -- Tell the remote machine to resume.
696 array_resume (pid
, step
, sig
)
698 enum target_signal sig
;
700 debuglogs (1, "array_resume (step=%d, sig=%d)", step
, sig
);
703 printf_monitor ("s\n");
705 printf_monitor ("go\n");
712 * array_wait -- Wait until the remote machine stops, then return,
713 * storing status in status just as `wait' would.
716 array_wait (pid
, status
)
718 struct target_waitstatus
*status
;
720 int old_timeout
= timeout
;
724 serial_ttystate ttystate
;
726 debuglogs(1, "array_wait (), printing extraneous text.");
728 status
->kind
= TARGET_WAITKIND_EXITED
;
729 status
->value
.integer
= 0;
731 timeout
= 0; /* Don't time out -- user program is running. */
733 #if !defined(__GO32__) && !defined(__MSDOS__) && !defined(_WIN32)
734 tty_desc
= SERIAL_FDOPEN (0);
735 ttystate
= SERIAL_GET_TTY_STATE (tty_desc
);
736 SERIAL_RAW (tty_desc
);
739 /* poll on the serial port and the keyboard. */
741 c
= readchar(timeout
);
743 if (c
== *(ARRAY_PROMPT
+ i
)) {
744 if (++i
>= strlen (ARRAY_PROMPT
)) { /* matched the prompt */
745 debuglogs (4, "array_wait(), got the expect_prompt.");
748 } else { /* not the prompt */
751 fputc_unfiltered (c
, gdb_stdout
);
754 c
= SERIAL_READCHAR(tty_desc
, timeout
);
756 SERIAL_WRITE(array_desc
, &c
, 1);
757 /* do this so it looks like there's keyboard echo */
758 if (c
== 3) /* exit on Control-C */
761 fputc_unfiltered (c
, gdb_stdout
);
766 SERIAL_SET_TTY_STATE (tty_desc
, ttystate
);
769 debuglogs (4, "array_wait(), got the expect_prompt.");
772 status
->kind
= TARGET_WAITKIND_STOPPED
;
773 status
->value
.sig
= TARGET_SIGNAL_TRAP
;
775 timeout
= old_timeout
;
781 * array_fetch_registers -- read the remote registers into the
785 array_fetch_registers (ignored
)
790 unsigned char packet
[PBUFSIZ
];
791 char regs
[REGISTER_BYTES
];
793 debuglogs (1, "array_fetch_registers (ignored=%d)\n", ignored
);
795 memset (packet
, 0, PBUFSIZ
);
796 /* Unimplemented registers read as all bits zero. */
797 memset (regs
, 0, REGISTER_BYTES
);
798 make_gdb_packet (packet
, "g");
799 if (array_send_packet (packet
) == 0)
800 error ("Couldn't transmit packet\n");
801 if (array_get_packet (packet
) == 0)
802 error ("Couldn't receive packet\n");
803 /* FIXME: read bytes from packet */
804 debuglogs (4, "array_fetch_registers: Got a \"%s\" back\n", packet
);
805 for (regno
= 0; regno
<= PC_REGNUM
+4; regno
++) {
806 /* supply register stores in target byte order, so swap here */
807 /* FIXME: convert from ASCII hex to raw bytes */
808 i
= ascii2hexword (packet
+ (regno
* 8));
809 debuglogs (5, "Adding register %d = %x\n", regno
, i
);
810 SWAP_TARGET_AND_HOST (&i
, 4);
811 supply_register (regno
, (char *)&i
);
816 * This is unused by targets like this one that use a
817 * protocol based on GDB's remote protocol.
820 array_fetch_register (ignored
)
823 array_fetch_registers ();
827 * Get all the registers from the targets. They come back in a large array.
830 array_store_registers (ignored
)
835 char packet
[PBUFSIZ
];
839 debuglogs (1, "array_store_registers()");
841 memset (packet
, 0, PBUFSIZ
);
842 memset (buf
, 0, PBUFSIZ
);
845 /* Unimplemented registers read as all bits zero. */
846 /* FIXME: read bytes from packet */
847 for (regno
= 0; regno
< 41; regno
++) { /* FIXME */
848 /* supply register stores in target byte order, so swap here */
849 /* FIXME: convert from ASCII hex to raw bytes */
850 i
= (unsigned long)read_register (regno
);
851 hexword2ascii (num
, i
);
852 strcpy (buf
+(regno
* 8)+1, num
);
854 *(buf
+ (regno
* 8) + 2) = 0;
855 make_gdb_packet (packet
, buf
);
856 if (array_send_packet (packet
) == 0)
857 error ("Couldn't transmit packet\n");
858 if (array_get_packet (packet
) == 0)
859 error ("Couldn't receive packet\n");
861 registers_changed ();
865 * This is unused by targets like this one that use a
866 * protocol based on GDB's remote protocol.
869 array_store_register (ignored
)
872 array_store_registers ();
875 /* Get ready to modify the registers array. On machines which store
876 individual registers, this doesn't need to do anything. On machines
877 which store all the registers in one fell swoop, this makes sure
878 that registers contains all the registers from the program being
882 array_prepare_to_store ()
884 /* Do nothing, since we can store individual regs */
890 printf ("\tAttached to %s at %d baud.\n",
895 * array_write_inferior_memory -- Copy LEN bytes of data from debugger
896 * memory at MYADDR to inferior's memory at MEMADDR. Returns length moved.
899 array_write_inferior_memory (memaddr
, myaddr
, len
)
901 unsigned char *myaddr
;
906 char packet
[PBUFSIZ
];
911 debuglogs (1, "array_write_inferior_memory (memaddr=0x%x, myaddr=0x%x, len=%d)", memaddr
, myaddr
, len
);
912 memset (buf
, '\0', PBUFSIZ
); /* this also sets the string terminator */
915 *p
++ = 'M'; /* The command to write memory */
916 hexword2ascii (num
, memaddr
); /* convert the address */
917 strcpy (p
, num
); /* copy the address */
919 *p
++ = ','; /* add comma delimeter */
920 hexword2ascii (num
, len
); /* Get the length as a 4 digit number */
925 *p
++ = ':'; /* add the colon delimeter */
926 for (j
= 0; j
< len
; j
++) { /* copy the data in after converting it */
927 *p
++ = tohex ((myaddr
[j
] >> 4) & 0xf);
928 *p
++ = tohex (myaddr
[j
] & 0xf);
931 make_gdb_packet (packet
, buf
);
932 if (array_send_packet (packet
) == 0)
933 error ("Couldn't transmit packet\n");
934 if (array_get_packet (packet
) == 0)
935 error ("Couldn't receive packet\n");
941 * array_read_inferior_memory -- read LEN bytes from inferior memory
942 * at MEMADDR. Put the result at debugger address MYADDR. Returns
946 array_read_inferior_memory(memaddr
, myaddr
, len
)
953 char packet
[PBUFSIZ
];
954 int count
; /* Number of bytes read so far. */
955 unsigned long startaddr
; /* Starting address of this pass. */
956 int len_this_pass
; /* Number of bytes to read in this pass. */
958 debuglogs (1, "array_read_inferior_memory (memaddr=0x%x, myaddr=0x%x, len=%d)", memaddr
, myaddr
, len
);
960 /* Note that this code works correctly if startaddr is just less
961 than UINT_MAX (well, really CORE_ADDR_MAX if there was such a
962 thing). That is, something like
963 array_read_bytes (CORE_ADDR_MAX - 4, foo, 4)
964 works--it never adds len To memaddr and gets 0. */
965 /* However, something like
966 array_read_bytes (CORE_ADDR_MAX - 3, foo, 4)
967 doesn't need to work. Detect it and give up if there's an attempt
969 if (((memaddr
- 1) + len
) < memaddr
) {
974 for (count
= 0, startaddr
= memaddr
; count
< len
; startaddr
+= len_this_pass
)
976 /* Try to align to 16 byte boundry (why?) */
978 if ((startaddr
% 16) != 0)
980 len_this_pass
-= startaddr
% 16;
982 /* Only transfer bytes we need */
983 if (len_this_pass
> (len
- count
))
985 len_this_pass
= (len
- count
);
987 /* Fetch the bytes */
988 debuglogs (3, "read %d bytes from inferior address %x", len_this_pass
,
990 sprintf (buf
, "m%08x,%04x", startaddr
, len_this_pass
);
991 make_gdb_packet (packet
, buf
);
992 if (array_send_packet (packet
) == 0)
994 error ("Couldn't transmit packet\n");
996 if (array_get_packet (packet
) == 0)
998 error ("Couldn't receive packet\n");
1002 error ("Got no data in the GDB packet\n");
1004 /* Pick packet apart and xfer bytes to myaddr */
1005 debuglogs (4, "array_read_inferior_memory: Got a \"%s\" back\n", packet
);
1006 for (j
= 0; j
< len_this_pass
; j
++)
1008 /* extract the byte values */
1009 myaddr
[count
++] = from_hex (*(packet
+(j
*2))) * 16 + from_hex (*(packet
+(j
*2)+1));
1010 debuglogs (5, "myaddr[%d] set to %x\n", count
-1, myaddr
[count
-1]);
1016 /* FIXME-someday! merge these two. */
1018 array_xfer_memory (memaddr
, myaddr
, len
, write
, target
)
1023 struct target_ops
*target
; /* ignored */
1026 return array_write_inferior_memory (memaddr
, myaddr
, len
);
1028 return array_read_inferior_memory (memaddr
, myaddr
, len
);
1032 array_kill (args
, from_tty
)
1036 return; /* ignore attempts to kill target system */
1039 /* Clean up when a program exits.
1040 The program actually lives on in the remote processor's RAM, and may be
1041 run again without a download. Don't leave it full of breakpoint
1045 array_mourn_inferior ()
1047 remove_breakpoints ();
1048 generic_mourn_inferior (); /* Do all the proper things now */
1051 #define MAX_ARRAY_BREAKPOINTS 16
1053 extern int memory_breakpoint_size
;
1054 static CORE_ADDR breakaddr
[MAX_ARRAY_BREAKPOINTS
] = {0};
1057 * array_insert_breakpoint -- add a breakpoint
1060 array_insert_breakpoint (addr
, shadow
)
1066 debuglogs (1, "array_insert_breakpoint() addr = 0x%x", addr
);
1068 for (i
= 0; i
<= MAX_ARRAY_BREAKPOINTS
; i
++) {
1069 if (breakaddr
[i
] == 0) {
1070 breakaddr
[i
] = addr
;
1071 if (sr_get_debug() > 4)
1072 printf ("Breakpoint at %x\n", addr
);
1073 array_read_inferior_memory(addr
, shadow
, memory_breakpoint_size
);
1074 printf_monitor("b 0x%x\n", addr
);
1080 fprintf(stderr
, "Too many breakpoints (> 16) for monitor\n");
1085 * _remove_breakpoint -- Tell the monitor to remove a breakpoint
1088 array_remove_breakpoint (addr
, shadow
)
1094 debuglogs (1, "array_remove_breakpoint() addr = 0x%x", addr
);
1096 for (i
= 0; i
< MAX_ARRAY_BREAKPOINTS
; i
++) {
1097 if (breakaddr
[i
] == addr
) {
1099 /* some monitors remove breakpoints based on the address */
1100 printf_monitor("bd %x\n", i
);
1105 fprintf(stderr
, "Can't find breakpoint associated with 0x%x\n", addr
);
1112 debuglogs (1, "array_stop()");
1113 printf_monitor("\003");
1118 * array_command -- put a command string, in args, out to MONITOR.
1119 * Output from MONITOR is placed on the users terminal until the
1120 * expect_prompt is seen. FIXME
1123 monitor_command (args
, fromtty
)
1127 debuglogs (1, "monitor_command (args=%s)", args
);
1129 if (array_desc
== NULL
)
1130 error("monitor target not open.");
1133 error("Missing command.");
1135 printf_monitor ("%s\n", args
);
1140 * make_gdb_packet -- make a GDB packet. The data is always ASCII.
1141 * A debug packet whose contents are <data>
1142 * is encapsulated for transmission in the form:
1144 * $ <data> # CSUM1 CSUM2
1146 * <data> must be ASCII alphanumeric and cannot include characters
1147 * '$' or '#'. If <data> starts with two characters followed by
1148 * ':', then the existing stubs interpret this as a sequence number.
1150 * CSUM1 and CSUM2 are ascii hex representation of an 8-bit
1151 * checksum of <data>, the most significant nibble is sent first.
1152 * the hex digits 0-9,a-f are used.
1156 make_gdb_packet (buf
, data
)
1160 unsigned char csum
= 0;
1164 debuglogs (3, "make_gdb_packet(%s)\n", data
);
1165 cnt
= strlen (data
);
1167 error ("make_gdb_packet(): to much data\n");
1169 /* start with the packet header */
1173 /* calculate the checksum */
1174 for (i
= 0; i
< cnt
; i
++) {
1179 /* terminate the data with a '#' */
1182 /* add the checksum as two ascii digits */
1183 *p
++ = tohex ((csum
>> 4) & 0xf);
1184 *p
++ = tohex (csum
& 0xf);
1185 *p
= 0x0; /* Null terminator on string */
1189 * array_send_packet -- send a GDB packet to the target with error handling. We
1190 * get a '+' (ACK) back if the packet is received and the checksum
1191 * matches. Otherwise a '-' (NAK) is returned. It returns a 1 for a
1192 * successful transmition, or a 0 for a failure.
1195 array_send_packet (packet
)
1204 /* scan the packet to make sure it only contains valid characters.
1205 this may sound silly, but sometimes a garbled packet will hang
1206 the target board. We scan the whole thing, then print the error
1209 for (i
= 0; i
< strlen(packet
); i
++) {
1210 debuglogs (5, "array_send_packet(): Scanning \'%c\'\n", packet
[i
]);
1211 /* legit hex numbers or command */
1212 if ((isxdigit(packet
[i
])) || (isalpha(packet
[i
])))
1214 switch (packet
[i
]) {
1217 case '#': /* end of packet */
1218 case '$': /* start of packet */
1220 default: /* bogus character */
1222 debuglogs (4, "array_send_packet(): Found a non-ascii digit \'%c\' in the packet.\n", packet
[i
]);
1228 error ("Can't send packet, found %d non-ascii characters", retries
);
1230 /* ok, try to send the packet */
1232 while (retries
++ <= 10) {
1233 printf_monitor ("%s", packet
);
1235 /* read until either a timeout occurs (-2) or '+' is read */
1236 while (retries
<= 10) {
1237 c
= readchar (-timeout
);
1238 debuglogs (3, "Reading a GDB protocol packet... Got a '%c'\n", c
);
1241 debuglogs (3, "Got Ack\n");
1243 case SERIAL_TIMEOUT
:
1244 debuglogs (3, "Timed out reading serial port\n");
1245 printf_monitor("@"); /* resync with the monitor */
1246 expect_prompt(1); /* See if we get a expect_prompt */
1247 break; /* Retransmit buffer */
1249 debuglogs (3, "Got NAK\n");
1250 printf_monitor("@"); /* resync with the monitor */
1251 expect_prompt(1); /* See if we get a expect_prompt */
1254 /* it's probably an old response, or the echo of our command.
1255 * just gobble up the packet and ignore it.
1257 debuglogs (3, "Got a junk packet\n");
1260 c
= readchar (timeout
);
1263 c
= readchar (timeout
);
1265 c
= readchar (timeout
);
1268 debuglogs (3, "Reading a junk packet, got a \"%s\"\n", junk
);
1269 continue; /* Now, go look for next packet */
1274 debuglogs (3, "Retransmitting packet \"%s\"\n", packet
);
1275 break; /* Here to retransmit */
1282 * array_get_packet -- get a GDB packet from the target. Basically we read till we
1283 * see a '#', then check the checksum. It returns a 1 if it's gotten a
1284 * packet, or a 0 it the packet wasn't transmitted correctly.
1287 array_get_packet (packet
)
1293 unsigned char pktcsum
;
1299 memset (packet
, 1, PBUFSIZ
);
1301 while (retries
<= 10) {
1303 c
= readchar (timeout
);
1304 if (c
== SERIAL_TIMEOUT
) {
1305 debuglogs (3, "array_get_packet: got time out from serial port.\n");
1307 debuglogs (3, "Waiting for a '$', got a %c\n", c
);
1311 while (retries
<= 10) {
1312 c
= readchar (timeout
);
1313 debuglogs (3, "array_get_packet: got a '%c'\n", c
);
1315 case SERIAL_TIMEOUT
:
1316 debuglogs (3, "Timeout in mid-packet, retrying\n");
1319 debuglogs (3, "Saw new packet start in middle of old one\n");
1320 return 0; /* Start a new packet, count retries */
1323 pktcsum
= from_hex (readchar (timeout
)) << 4;
1324 pktcsum
|= from_hex (readchar (timeout
));
1326 debuglogs (3, "\nGDB packet checksum zero, must be a bogus packet\n");
1327 if (csum
== pktcsum
) {
1328 debuglogs (3, "\nGDB packet checksum correct, packet data is \"%s\",\n", packet
);
1329 printf_monitor ("@");
1333 debuglogs (3, "Bad checksum, sentsum=0x%x, csum=0x%x\n", pktcsum
, csum
);
1335 case '*': /* Run length encoding */
1336 debuglogs (5, "Run length encoding in packet\n");
1338 c
= readchar (timeout
);
1340 c
= c
- ' ' + 3; /* Compute repeat count */
1342 if (c
> 0 && c
< 255 && bp
+ c
- 1 < packet
+ PBUFSIZ
- 1) {
1343 memset (bp
, *(bp
- 1), c
);
1348 printf_filtered ("Repeat count %d too large for buffer.\n", c
);
1352 if ((!isxdigit(c
)) && (!ispunct(c
)))
1353 debuglogs (4, "Got a non-ascii digit \'%c\'.\\n", c
);
1354 if (bp
< packet
+ PBUFSIZ
- 1) {
1361 puts_filtered ("Remote packet too long.\n");
1369 * ascii2hexword -- convert an ascii number represented by 8 digits to a hex value.
1371 static unsigned long
1380 for (i
= 0; i
< 8; i
++) {
1382 if (mem
[i
] >= 'A' && mem
[i
] <= 'F')
1383 val
= val
+ mem
[i
] - 'A' + 10;
1384 if (mem
[i
] >= 'a' && mem
[i
] <= 'f')
1385 val
= val
+ mem
[i
] - 'a' + 10;
1386 if (mem
[i
] >= '0' && mem
[i
] <= '9')
1387 val
= val
+ mem
[i
] - '0';
1391 debuglogs (4, "ascii2hexword() got a 0x%x from %s(%x).\n", val
, buf
, mem
);
1396 * ascii2hexword -- convert a hex value to an ascii number represented by 8
1400 hexword2ascii (mem
, num
)
1407 debuglogs (4, "hexword2ascii() converting %x ", num
);
1408 for (i
= 7; i
>= 0; i
--) {
1409 mem
[i
] = tohex ((num
>> 4) & 0xf);
1410 mem
[i
] = tohex (num
& 0xf);
1414 debuglogs (4, "\tto a %s", mem
);
1417 /* Convert hex digit A to a number. */
1425 debuglogs (4, "from_hex got a 0x%x(%c)\n",a
,a
);
1426 if (a
>= '0' && a
<= '9')
1428 if (a
>= 'a' && a
<= 'f')
1429 return a
- 'a' + 10;
1430 if (a
>= 'A' && a
<= 'F')
1431 return a
- 'A' + 10;
1433 error ("Reply contains invalid hex digit 0x%x", a
);
1437 /* Convert number NIB to a hex digit. */
1449 * _initialize_remote_monitors -- setup a few addtitional commands that
1450 * are usually only used by monitors.
1453 _initialize_remote_monitors ()
1455 /* generic monitor command */
1456 add_com ("monitor", class_obscure
, monitor_command
,
1457 "Send a command to the debug monitor.");
1462 * _initialize_array -- do any special init stuff for the target.
1465 _initialize_array ()
1468 add_target (&array_ops
);