binutils-gdb/gdb/remote-bug.c

1028 lines
25 KiB
C
Raw Normal View History

/* Remote debugging interface for Motorola's MVME187BUG monitor, an embedded
monitor for the m88k.
2001-03-06 09:22:02 +01:00
Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001
Free Software Foundation, Inc.
Contributed by Cygnus Support. Written by K. Richard Pixley.
1999-07-07 22:19:36 +02:00
This file is part of GDB.
1999-07-07 22:19:36 +02:00
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
1999-07-07 22:19:36 +02:00
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
1999-07-07 22:19:36 +02:00
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA. */
#include "defs.h"
#include "inferior.h"
#include "gdb_string.h"
#include "regcache.h"
#include <ctype.h>
#include <fcntl.h>
#include <setjmp.h>
#include <errno.h>
#include "terminal.h"
#include "gdbcore.h"
#include "gdbcmd.h"
#include "serial.h"
#include "remote-utils.h"
/* External data declarations */
extern int stop_soon_quietly; /* for wait_for_inferior */
/* Forward data declarations */
extern struct target_ops bug_ops; /* Forward declaration */
/* Forward function declarations */
2000-05-28 03:12:42 +02:00
static int bug_clear_breakpoints (void);
2000-05-28 03:12:42 +02:00
static int bug_read_memory (CORE_ADDR memaddr,
unsigned char *myaddr, int len);
2000-05-28 03:12:42 +02:00
static int bug_write_memory (CORE_ADDR memaddr,
unsigned char *myaddr, int len);
/* This variable is somewhat arbitrary. It's here so that it can be
set from within a running gdb. */
static int srec_max_retries = 3;
/* Each S-record download to the target consists of an S0 header
record, some number of S3 data records, and one S7 termination
record. I call this download a "frame". Srec_frame says how many
bytes will be represented in each frame. */
#define SREC_SIZE 160
static int srec_frame = SREC_SIZE;
/* This variable determines how many bytes will be represented in each
S3 s-record. */
static int srec_bytes = 40;
/* At one point it appeared to me as though the bug monitor could not
really be expected to receive two sequential characters at 9600
baud reliably. Echo-pacing is an attempt to force data across the
line even in this condition. Specifically, in echo-pace mode, each
character is sent one at a time and we look for the echo before
sending the next. This is excruciatingly slow. */
static int srec_echo_pace = 0;
/* How long to wait after an srec for a possible error message.
Similar to the above, I tried sleeping after sending each S3 record
in hopes that I might actually see error messages from the bug
monitor. This might actually work if we were to use sleep
intervals smaller than 1 second. */
static int srec_sleep = 0;
/* Every srec_noise records, flub the checksum. This is a debugging
feature. Set the variable to something other than 1 in order to
inject *deliberate* checksum errors. One might do this if one
wanted to test error handling and recovery. */
static int srec_noise = 0;
/* Called when SIGALRM signal sent due to alarm() timeout. */
/* Number of SIGTRAPs we need to simulate. That is, the next
NEED_ARTIFICIAL_TRAP calls to bug_wait should just return
SIGTRAP without actually waiting for anything. */
static int need_artificial_trap = 0;
/*
* Download a file specified in 'args', to the bug.
*/
static void
2000-07-30 03:48:28 +02:00
bug_load (char *args, int fromtty)
{
bfd *abfd;
asection *s;
char buffer[1024];
sr_check_open ();
2001-05-04 06:15:33 +02:00
inferior_ptid = null_ptid;
abfd = bfd_openr (args, 0);
if (!abfd)
{
printf_filtered ("Unable to open file %s\n", args);
return;
}
if (bfd_check_format (abfd, bfd_object) == 0)
{
printf_filtered ("File is not an object file\n");
return;
}
s = abfd->sections;
while (s != (asection *) NULL)
{
srec_frame = SREC_SIZE;
if (s->flags & SEC_LOAD)
{
int i;
char *buffer = xmalloc (srec_frame);
2001-04-02 16:47:22 +02:00
printf_filtered ("%s\t: 0x%4lx .. 0x%4lx ", s->name, s->vma, s->vma + s->_raw_size);
gdb_flush (gdb_stdout);
for (i = 0; i < s->_raw_size; i += srec_frame)
{
if (srec_frame > s->_raw_size - i)
srec_frame = s->_raw_size - i;
bfd_get_section_contents (abfd, s, buffer, i, srec_frame);
bug_write_memory (s->vma + i, buffer, srec_frame);
printf_filtered ("*");
gdb_flush (gdb_stdout);
}
printf_filtered ("\n");
2000-12-15 02:01:51 +01:00
xfree (buffer);
}
s = s->next;
}
sprintf (buffer, "rs ip %lx", (unsigned long) abfd->start_address);
sr_write_cr (buffer);
gr_expect_prompt ();
}
#if 0
static char *
2000-07-30 03:48:28 +02:00
get_word (char **p)
{
char *s = *p;
char *word;
char *copy;
size_t len;
while (isspace (*s))
s++;
word = s;
len = 0;
while (*s && !isspace (*s))
{
s++;
len++;
}
copy = xmalloc (len + 1);
memcpy (copy, word, len);
copy[len] = 0;
*p = s;
return copy;
}
#endif
1999-07-07 22:19:36 +02:00
static struct gr_settings bug_settings =
{
"Bug>", /* prompt */
&bug_ops, /* ops */
bug_clear_breakpoints, /* clear_all_breakpoints */
gr_generic_checkin, /* checkin */
};
1999-07-07 22:19:36 +02:00
static char *cpu_check_strings[] =
{
"=",
"Invalid Register",
};
static void
2000-07-30 03:48:28 +02:00
bug_open (char *args, int from_tty)
{
if (args == NULL)
1999-07-07 22:19:36 +02:00
args = "";
1999-07-07 22:19:36 +02:00
gr_open (args, from_tty, &bug_settings);
/* decide *now* whether we are on an 88100 or an 88110 */
1999-07-07 22:19:36 +02:00
sr_write_cr ("rs cr06");
sr_expect ("rs cr06");
1999-07-07 22:19:36 +02:00
switch (gr_multi_scan (cpu_check_strings, 0))
{
1999-07-07 22:19:36 +02:00
case 0: /* this is an m88100 */
target_is_m88110 = 0;
break;
1999-07-07 22:19:36 +02:00
case 1: /* this is an m88110 */
target_is_m88110 = 1;
break;
default:
internal_error (__FILE__, __LINE__, "failed internal consistency check");
}
}
/* Tell the remote machine to resume. */
void
2001-05-04 06:15:33 +02:00
bug_resume (ptid_t ptid, int step, enum target_signal sig)
{
if (step)
{
1999-07-07 22:19:36 +02:00
sr_write_cr ("t");
/* Force the next bug_wait to return a trap. Not doing anything
1999-07-07 22:19:36 +02:00
about I/O from the target means that the user has to type
"continue" to see any. FIXME, this should be fixed. */
need_artificial_trap = 1;
}
else
1999-07-07 22:19:36 +02:00
sr_write_cr ("g");
return;
}
/* Wait until the remote machine stops, then return,
storing status in STATUS just as `wait' would. */
1999-07-07 22:19:36 +02:00
static char *wait_strings[] =
{
"At Breakpoint",
"Exception: Data Access Fault (Local Bus Timeout)",
1999-07-07 22:19:36 +02:00
"\r8??\?-Bug>", /* The '\?' avoids creating a trigraph */
"\r197-Bug>",
NULL,
};
2001-05-04 06:15:33 +02:00
ptid_t
bug_wait (ptid_t ptid, struct target_waitstatus *status)
{
1999-07-07 22:19:36 +02:00
int old_timeout = sr_get_timeout ();
int old_immediate_quit = immediate_quit;
status->kind = TARGET_WAITKIND_EXITED;
status->value.integer = 0;
/* read off leftovers from resume so that the rest can be passed
back out as stdout. */
if (need_artificial_trap == 0)
{
1999-07-07 22:19:36 +02:00
sr_expect ("Effective address: ");
(void) sr_get_hex_word ();
sr_expect ("\r\n");
}
1999-07-07 22:19:36 +02:00
sr_set_timeout (-1); /* Don't time out -- user program is running. */
immediate_quit = 1; /* Helps ability to QUIT */
1999-07-07 22:19:36 +02:00
switch (gr_multi_scan (wait_strings, need_artificial_trap == 0))
{
1999-07-07 22:19:36 +02:00
case 0: /* breakpoint case */
status->kind = TARGET_WAITKIND_STOPPED;
status->value.sig = TARGET_SIGNAL_TRAP;
/* user output from the target can be discarded here. (?) */
1999-07-07 22:19:36 +02:00
gr_expect_prompt ();
break;
1999-07-07 22:19:36 +02:00
case 1: /* bus error */
status->kind = TARGET_WAITKIND_STOPPED;
status->value.sig = TARGET_SIGNAL_BUS;
/* user output from the target can be discarded here. (?) */
1999-07-07 22:19:36 +02:00
gr_expect_prompt ();
break;
1999-07-07 22:19:36 +02:00
case 2: /* normal case */
case 3:
if (need_artificial_trap != 0)
{
/* stepping */
status->kind = TARGET_WAITKIND_STOPPED;
status->value.sig = TARGET_SIGNAL_TRAP;
need_artificial_trap--;
break;
}
else
{
/* exit case */
status->kind = TARGET_WAITKIND_EXITED;
status->value.integer = 0;
break;
}
1999-07-07 22:19:36 +02:00
case -1: /* trouble */
default:
fprintf_filtered (gdb_stderr,
"Trouble reading target during wait\n");
break;
}
1999-07-07 22:19:36 +02:00
sr_set_timeout (old_timeout);
immediate_quit = old_immediate_quit;
2001-05-04 06:15:33 +02:00
return inferior_ptid;
}
/* Return the name of register number REGNO
in the form input and output by bug.
Returns a pointer to a static buffer containing the answer. */
static char *
2000-07-30 03:48:28 +02:00
get_reg_name (int regno)
{
1999-07-07 22:19:36 +02:00
static char *rn[] =
{
"r00", "r01", "r02", "r03", "r04", "r05", "r06", "r07",
"r08", "r09", "r10", "r11", "r12", "r13", "r14", "r15",
"r16", "r17", "r18", "r19", "r20", "r21", "r22", "r23",
"r24", "r25", "r26", "r27", "r28", "r29", "r30", "r31",
1999-07-07 22:19:36 +02:00
/* these get confusing because we omit a few and switch some ordering around. */
1999-07-07 22:19:36 +02:00
"cr01", /* 32 = psr */
"fcr62", /* 33 = fpsr */
"fcr63", /* 34 = fpcr */
"ip", /* this is something of a cheat. */
/* 35 = sxip */
1999-07-07 22:19:36 +02:00
"cr05", /* 36 = snip */
"cr06", /* 37 = sfip */
"x00", "x01", "x02", "x03", "x04", "x05", "x06", "x07",
"x08", "x09", "x10", "x11", "x12", "x13", "x14", "x15",
"x16", "x17", "x18", "x19", "x20", "x21", "x22", "x23",
"x24", "x25", "x26", "x27", "x28", "x29", "x30", "x31",
};
return rn[regno];
}
1999-07-07 22:19:36 +02:00
#if 0 /* not currently used */
/* Read from remote while the input matches STRING. Return zero on
success, -1 on failure. */
static int
2000-07-30 03:48:28 +02:00
bug_scan (char *s)
{
int c;
while (*s)
{
1999-07-07 22:19:36 +02:00
c = sr_readchar ();
if (c != *s++)
{
1999-07-07 22:19:36 +02:00
fflush (stdout);
printf ("\nNext character is '%c' - %d and s is \"%s\".\n", c, c, --s);
return (-1);
}
}
1999-07-07 22:19:36 +02:00
return (0);
}
#endif /* never */
static int
2000-07-30 03:48:28 +02:00
bug_srec_write_cr (char *s)
{
char *p = s;
if (srec_echo_pace)
for (p = s; *p; ++p)
{
1999-07-07 22:19:36 +02:00
if (sr_get_debug () > 0)
printf ("%c", *p);
do
serial_write (sr_get_desc (), p, 1);
1999-07-07 22:19:36 +02:00
while (sr_pollchar () != *p);
}
else
1999-07-07 22:19:36 +02:00
{
sr_write_cr (s);
/* return(bug_scan (s) || bug_scan ("\n")); */
}
1999-07-07 22:19:36 +02:00
return (0);
}
/* Store register REGNO, or all if REGNO == -1. */
static void
2000-07-30 03:48:28 +02:00
bug_fetch_register (int regno)
{
1999-07-07 22:19:36 +02:00
sr_check_open ();
if (regno == -1)
{
int i;
for (i = 0; i < NUM_REGS; ++i)
1999-07-07 22:19:36 +02:00
bug_fetch_register (i);
}
else if (target_is_m88110 && regno == SFIP_REGNUM)
{
/* m88110 has no sfip. */
long l = 0;
1999-07-07 22:19:36 +02:00
supply_register (regno, (char *) &l);
}
else if (regno < XFP_REGNUM)
{
char buffer[MAX_REGISTER_RAW_SIZE];
sr_write ("rs ", 3);
1999-07-07 22:19:36 +02:00
sr_write_cr (get_reg_name (regno));
sr_expect ("=");
store_unsigned_integer (buffer, REGISTER_RAW_SIZE (regno),
1999-07-07 22:19:36 +02:00
sr_get_hex_word ());
gr_expect_prompt ();
supply_register (regno, buffer);
}
else
{
/* Float register so we need to parse a strange data format. */
long p;
unsigned char fpreg_buf[10];
1999-07-07 22:19:36 +02:00
sr_write ("rs ", 3);
sr_write (get_reg_name (regno), strlen (get_reg_name (regno)));
sr_write_cr (";d");
sr_expect ("rs");
sr_expect (get_reg_name (regno));
sr_expect (";d");
sr_expect ("=");
/* sign */
1999-07-07 22:19:36 +02:00
p = sr_get_hex_digit (1);
fpreg_buf[0] = p << 7;
/* exponent */
1999-07-07 22:19:36 +02:00
sr_expect ("_");
p = sr_get_hex_digit (1);
fpreg_buf[0] += (p << 4);
1999-07-07 22:19:36 +02:00
fpreg_buf[0] += sr_get_hex_digit (1);
1999-07-07 22:19:36 +02:00
fpreg_buf[1] = sr_get_hex_digit (1) << 4;
/* fraction */
1999-07-07 22:19:36 +02:00
sr_expect ("_");
fpreg_buf[1] += sr_get_hex_digit (1);
fpreg_buf[2] = (sr_get_hex_digit (1) << 4) + sr_get_hex_digit (1);
fpreg_buf[3] = (sr_get_hex_digit (1) << 4) + sr_get_hex_digit (1);
fpreg_buf[4] = (sr_get_hex_digit (1) << 4) + sr_get_hex_digit (1);
fpreg_buf[5] = (sr_get_hex_digit (1) << 4) + sr_get_hex_digit (1);
fpreg_buf[6] = (sr_get_hex_digit (1) << 4) + sr_get_hex_digit (1);
fpreg_buf[7] = (sr_get_hex_digit (1) << 4) + sr_get_hex_digit (1);
fpreg_buf[8] = 0;
fpreg_buf[9] = 0;
1999-07-07 22:19:36 +02:00
gr_expect_prompt ();
supply_register (regno, fpreg_buf);
}
return;
}
/* Store register REGNO, or all if REGNO == -1. */
static void
2000-07-30 03:48:28 +02:00
bug_store_register (int regno)
{
char buffer[1024];
1999-07-07 22:19:36 +02:00
sr_check_open ();
if (regno == -1)
{
int i;
for (i = 0; i < NUM_REGS; ++i)
1999-07-07 22:19:36 +02:00
bug_store_register (i);
}
else
{
char *regname;
1999-07-07 22:19:36 +02:00
regname = get_reg_name (regno);
if (target_is_m88110 && regno == SFIP_REGNUM)
return;
else if (regno < XFP_REGNUM)
2001-04-02 16:47:22 +02:00
sprintf (buffer, "rs %s %08lx",
1999-07-07 22:19:36 +02:00
regname,
2001-04-02 16:47:22 +02:00
(long) read_register (regno));
else
{
unsigned char *fpreg_buf =
1999-07-07 22:19:36 +02:00
(unsigned char *) &registers[REGISTER_BYTE (regno)];
sprintf (buffer, "rs %s %1x_%02x%1x_%1x%02x%02x%02x%02x%02x%02x;d",
regname,
/* sign */
(fpreg_buf[0] >> 7) & 0xf,
/* exponent */
fpreg_buf[0] & 0x7f,
(fpreg_buf[1] >> 8) & 0xf,
/* fraction */
fpreg_buf[1] & 0xf,
fpreg_buf[2],
fpreg_buf[3],
fpreg_buf[4],
fpreg_buf[5],
fpreg_buf[6],
fpreg_buf[7]);
}
1999-07-07 22:19:36 +02:00
sr_write_cr (buffer);
gr_expect_prompt ();
}
return;
}
2000-10-04 00:42:32 +02:00
/* Transfer LEN bytes between GDB address MYADDR and target address
MEMADDR. If WRITE is non-zero, transfer them to the target,
otherwise transfer them from the target. TARGET is unused.
Returns the number of bytes transferred. */
int
2000-10-04 00:42:32 +02:00
bug_xfer_memory (CORE_ADDR memaddr, char *myaddr, int len, int write,
* exec.c (xfer_memory): Add attrib argument. * infptrace.c (child_xfer_memory): Likewise. * monitor.c (monitor_xfer_memory): Likewise. * remote-adapt.c (adapt_xfer_inferior_memory): Likewise. * remote-array.c (array_xfer_memory): Likewise. * remote-bug.c (bug_xfer_memory): Likewise. * remote-e7000.c (e7000_xfer_inferior_memory): Likewise. * remote-eb.c (eb_xfer_inferior_memory): Likewise. * remote-es.c (es1800_xfer_inferior_memory): Likewise. * remote-mips.c (mips_xfer_memory): Likewise. * remote-mm.c (mm_xfer_inferior_memory): Likewise. * remote-nindy.c (nindy_xfer_inferior_memory): Likewise. * remote-os9k.c (rombug_xfer_inferior_memory): Likewise. * remote-rdi.c (arm_rdi_xfer_memory): Likewise. * remote-rdp.c (remote_rdp_xfer_inferior_memory): Likewise. * remote-sds.c (sds_xfer_memory): Likewise. * remote-sim.c (gdbsim_xfer_inferior_memory): Likewise. * remote-st.c (st2000_xfer_inferior_memory): Likewise. * remote-udi.c (udi_xfer_inferior_memory): Likewise. * remote-vx.c (vx_xfer_memory): Likewise. * remote.c (remote_xfer_memory): Likewise. * target.c (debug_to_xfer_memory, do_xfer_memory): Likewise. * target.h (child_xfer_memory, do_xfer_memory, xfer_memory): Likewise. * target.h (#include "memattr.h"): Added. (target_ops.to_xfer_memory): Add attrib argument. * wince.c (_initialize_inftarg): Removed call to set_dcache_state. * dcache.h (set_dcache_state): Removed declaration. * dcache.c (set_dcache_state): Removed definition * dcache.c: Update module comment, as dcache is now enabled and disabled with memory region attributes instead of by the global variable "remotecache". Add comment describing the interaction between dcache and memory region attributes. (dcache_xfer_memory): Add comment describing benefits of moving cache writeback to a higher level. (dcache_struct): Removed cache_has_stuff field. This was used to record whether the cache had been accessed in order to invalidate it when it was disabled. However, this is not needed because the cache is write through and the code that enables, disables, and deletes memory regions invalidate the cache. Add comment which suggests that we could be more selective and only invalidate those cache lines containing data from those memory regions. (dcache_invalidate): Updated. (dcache_xfer_memory): Updated. (dcache_alloc): Don't abort() if dcache_enabled_p is clear. (dcache_xfer_memory): Removed code that called do_xfer_memory() to perform a uncached transfer if dcache_enabled_p was clear. This function is now only called if caching is enabled for the memory region. (dcache_info): Always print cache info. * target.c (do_xfer_memory): Add attrib argument. (target_xfer_memory, target_xfer_memory_partial): Break transfer into chunks defined by memory regions, pass region attributes to do_xfer_memory(). * dcache.c (dcache_read_line, dcache_write_line): Likewise. * Makefile.in (SFILES): Add memattr.c. (COMMON_OBS): Add memattr.o. (dcache.o): Add target.h to dependencies. * memattr.c: New file. * memattr.h: Likewise.
2001-01-23 23:48:56 +01:00
struct mem_attrib *attrib ATTRIBUTE_UNUSED,
struct target_ops *target ATTRIBUTE_UNUSED)
{
* TODO: Note abstraction layer violation where "ocd reset" command must invalidate the dcache, and how this might be fixed. * monitor.c (#include "dcache.h"): Removed. (remote_dcache): Removed. (monitor_open): Removed code that created local dcache. (flush_monitor_dcache): Removed (unused function). (monitor_resume): Removed call to dcache_invd(). (monitor_load): Likewise. (monitor_xfer_memory): Changed to call monitor_write_memory(), monitor_write_memory_block(), and monitor_read_memory() instead of dcache_xfer_memory(). * monitor.h (flush_monitor_dcache): Removed (unused function). * ocd.c (#include "dcache.h"): Removed. (ocd_dcache): Removed. (ocd_open): Removed code that created local dcache. (ocd_resume): Removed call to dcache_invd(). (ocd_xfer_memory): Changed to call ocd_write_bytes() and ocd_read_bytes() instead of dcache_xfer_memory(). (bdm_reset_command): Invalidate target dcache. * remote-bug.c (bug_load): Remove call to dcache_invd(). (bug_resume): Likewise. (bug_settings): Remove dcache, readfunc, and writefunc fields from initializer. (bug_xfer_memory): Changed to call bug_read_memory() and bug_write_memory() instead of dcache_xfer_memory(). * remote-nindy.c (#include "dcache.h"): Removed. (nindy_dcache): Removed. (nindy_open): Removed code that created local dcache. (nindy_resume): Removed call to dcache_invd(). (nindy_load): Likewise. (nindy_xfer_inferior_memory): Changed to call ninMemPut() and ninMemGet() instead of dcache_xfer_memory(). * remote-sds.c (#include "dcache.h"): Removed. (sds_dcache): Removed. (sds_open): Removed code that created local dcache. (sds_resume): Removed call to dcache_invd(). (sds_xfer_memory): Changed to call sds_write_bytes() and sds_read_bytes() instead of dcache_xfer_memory(). * remote-utils.c (gr_open): Removed code that created local dcache. * remote-utils.h (#include "dcache.h"): Removed. (struct gr_settings): Removed dcache, readfunc, and writefunc fields. (gr_get_dcache, gr_set_dcache): Removed macro definitions. * remote.c (#include "dcache.h"): Removed. (remote_dcache): Removed. (remote_open_1): Removed code that created local dcache. (remote_async_open_1): Likewise. (remote_resume): Removed call to dcache_invd(). (remote_async_resume): Likewise. (remote_xfer_memory): Changed to call remote_write_bytes() and remote_read_bytes() instead of dcache_xfer_memory(). * wince.c (#include "dcache.h"): Removed. (remote_dcache): Removed. (child_create_inferior): Removed code that created local dcache. (child_xfer_memory): Changed to call remote_write_bytes() and remote_read_bytes() instead of dcache_xfer_memory(). (child_resume): Removed call to dcache_invd(). * target.c (target_dcache): Added. (target_load): Invalidate target_dcache. (do_xfer_memory): New function. (target_xfer_memory): Reimplement in terms of dcache_xfer_memory(). (target_xfer_memory_partial): Likewise. (initialize_targets): Create target_dcache. * target.h (#include "dcache.h"): Added. (target_open): Invalidate target_dcache. (target_resume): Likewise. (do_xfer_memory): New declaration. * dcache.c (dcache_init): Removed reading and writing arguments. (dcache_struct): Removed read_memory and write_memory fields. (dcache_write_line): Call do_xfer_memory. (dcache_read_line): Likewise. (dcache_xfer_memory): Likewise. (dcache_invalidate): Renamed from dcache_invd. (dcache_init): Updated. (dcache_xfer_memory): Updated. * dcache.h (memxferfunc): Removed definition.
2000-11-03 23:00:56 +01:00
int res;
if (len <= 0)
return 0;
* TODO: Note abstraction layer violation where "ocd reset" command must invalidate the dcache, and how this might be fixed. * monitor.c (#include "dcache.h"): Removed. (remote_dcache): Removed. (monitor_open): Removed code that created local dcache. (flush_monitor_dcache): Removed (unused function). (monitor_resume): Removed call to dcache_invd(). (monitor_load): Likewise. (monitor_xfer_memory): Changed to call monitor_write_memory(), monitor_write_memory_block(), and monitor_read_memory() instead of dcache_xfer_memory(). * monitor.h (flush_monitor_dcache): Removed (unused function). * ocd.c (#include "dcache.h"): Removed. (ocd_dcache): Removed. (ocd_open): Removed code that created local dcache. (ocd_resume): Removed call to dcache_invd(). (ocd_xfer_memory): Changed to call ocd_write_bytes() and ocd_read_bytes() instead of dcache_xfer_memory(). (bdm_reset_command): Invalidate target dcache. * remote-bug.c (bug_load): Remove call to dcache_invd(). (bug_resume): Likewise. (bug_settings): Remove dcache, readfunc, and writefunc fields from initializer. (bug_xfer_memory): Changed to call bug_read_memory() and bug_write_memory() instead of dcache_xfer_memory(). * remote-nindy.c (#include "dcache.h"): Removed. (nindy_dcache): Removed. (nindy_open): Removed code that created local dcache. (nindy_resume): Removed call to dcache_invd(). (nindy_load): Likewise. (nindy_xfer_inferior_memory): Changed to call ninMemPut() and ninMemGet() instead of dcache_xfer_memory(). * remote-sds.c (#include "dcache.h"): Removed. (sds_dcache): Removed. (sds_open): Removed code that created local dcache. (sds_resume): Removed call to dcache_invd(). (sds_xfer_memory): Changed to call sds_write_bytes() and sds_read_bytes() instead of dcache_xfer_memory(). * remote-utils.c (gr_open): Removed code that created local dcache. * remote-utils.h (#include "dcache.h"): Removed. (struct gr_settings): Removed dcache, readfunc, and writefunc fields. (gr_get_dcache, gr_set_dcache): Removed macro definitions. * remote.c (#include "dcache.h"): Removed. (remote_dcache): Removed. (remote_open_1): Removed code that created local dcache. (remote_async_open_1): Likewise. (remote_resume): Removed call to dcache_invd(). (remote_async_resume): Likewise. (remote_xfer_memory): Changed to call remote_write_bytes() and remote_read_bytes() instead of dcache_xfer_memory(). * wince.c (#include "dcache.h"): Removed. (remote_dcache): Removed. (child_create_inferior): Removed code that created local dcache. (child_xfer_memory): Changed to call remote_write_bytes() and remote_read_bytes() instead of dcache_xfer_memory(). (child_resume): Removed call to dcache_invd(). * target.c (target_dcache): Added. (target_load): Invalidate target_dcache. (do_xfer_memory): New function. (target_xfer_memory): Reimplement in terms of dcache_xfer_memory(). (target_xfer_memory_partial): Likewise. (initialize_targets): Create target_dcache. * target.h (#include "dcache.h"): Added. (target_open): Invalidate target_dcache. (target_resume): Likewise. (do_xfer_memory): New declaration. * dcache.c (dcache_init): Removed reading and writing arguments. (dcache_struct): Removed read_memory and write_memory fields. (dcache_write_line): Call do_xfer_memory. (dcache_read_line): Likewise. (dcache_xfer_memory): Likewise. (dcache_invalidate): Renamed from dcache_invd. (dcache_init): Updated. (dcache_xfer_memory): Updated. * dcache.h (memxferfunc): Removed definition.
2000-11-03 23:00:56 +01:00
if (write)
res = bug_write_memory (memaddr, myaddr, len);
else
res = bug_read_memory (memaddr, myaddr, len);
return res;
}
static void
2000-07-30 03:48:28 +02:00
start_load (void)
{
char *command;
command = (srec_echo_pace ? "lo 0 ;x" : "lo 0");
sr_write_cr (command);
sr_expect (command);
sr_expect ("\r\n");
bug_srec_write_cr ("S0030000FC");
return;
}
/* This is an extremely vulnerable and fragile function. I've made
considerable attempts to make this deterministic, but I've
certainly forgotten something. The trouble is that S-records are
only a partial file format, not a protocol. Worse, apparently the
m88k bug monitor does not run in real time while receiving
S-records. Hence, we must pay excruciating attention to when and
where error messages are returned, and what has actually been sent.
Each call represents a chunk of memory to be sent to the target.
We break that chunk into an S0 header record, some number of S3
data records each containing srec_bytes, and an S7 termination
record. */
1999-07-07 22:19:36 +02:00
static char *srecord_strings[] =
{
"S-RECORD",
"-Bug>",
NULL,
};
static int
2000-07-30 03:48:28 +02:00
bug_write_memory (CORE_ADDR memaddr, unsigned char *myaddr, int len)
{
int done;
int checksum;
int x;
int retries;
char *buffer = alloca ((srec_bytes + 8) << 1);
retries = 0;
do
{
done = 0;
if (retries > srec_max_retries)
1999-07-07 22:19:36 +02:00
return (-1);
if (retries > 0)
{
1999-07-07 22:19:36 +02:00
if (sr_get_debug () > 0)
printf ("\n<retrying...>\n");
/* This gr_expect_prompt call is extremely important. Without
it, we will tend to resend our packet so fast that it
will arrive before the bug monitor is ready to receive
it. This would lead to a very ugly resend loop. */
1999-07-07 22:19:36 +02:00
gr_expect_prompt ();
}
1999-07-07 22:19:36 +02:00
start_load ();
while (done < len)
{
int thisgo;
int idx;
char *buf = buffer;
CORE_ADDR address;
checksum = 0;
thisgo = len - done;
if (thisgo > srec_bytes)
thisgo = srec_bytes;
address = memaddr + done;
2001-04-02 16:47:22 +02:00
sprintf (buf, "S3%02X%08lX", thisgo + 4 + 1, (long) address);
buf += 12;
checksum += (thisgo + 4 + 1
+ (address & 0xff)
1999-07-07 22:19:36 +02:00
+ ((address >> 8) & 0xff)
+ ((address >> 16) & 0xff)
+ ((address >> 24) & 0xff));
for (idx = 0; idx < thisgo; idx++)
{
sprintf (buf, "%02X", myaddr[idx + done]);
checksum += myaddr[idx + done];
buf += 2;
}
if (srec_noise > 0)
{
/* FIXME-NOW: insert a deliberate error every now and then.
1999-07-07 22:19:36 +02:00
This is intended for testing/debugging the error handling
stuff. */
static int counter = 0;
if (++counter > srec_noise)
{
counter = 0;
++checksum;
}
}
1999-07-07 22:19:36 +02:00
sprintf (buf, "%02X", ~checksum & 0xff);
bug_srec_write_cr (buffer);
if (srec_sleep != 0)
1999-07-07 22:19:36 +02:00
sleep (srec_sleep);
/* This pollchar is probably redundant to the gr_multi_scan
below. Trouble is, we can't be sure when or where an
error message will appear. Apparently, when running at
full speed from a typical sun4, error messages tend to
appear to arrive only *after* the s7 record. */
1999-07-07 22:19:36 +02:00
if ((x = sr_pollchar ()) != 0)
{
1999-07-07 22:19:36 +02:00
if (sr_get_debug () > 0)
printf ("\n<retrying...>\n");
++retries;
/* flush any remaining input and verify that we are back
1999-07-07 22:19:36 +02:00
at the prompt level. */
gr_expect_prompt ();
/* start all over again. */
1999-07-07 22:19:36 +02:00
start_load ();
done = 0;
continue;
}
done += thisgo;
}
1999-07-07 22:19:36 +02:00
bug_srec_write_cr ("S7060000000000F9");
++retries;
/* Having finished the load, we need to figure out whether we
1999-07-07 22:19:36 +02:00
had any errors. */
}
while (gr_multi_scan (srecord_strings, 0) == 0);;
1999-07-07 22:19:36 +02:00
return (0);
}
/* Copy LEN bytes of data from debugger memory at MYADDR
to inferior's memory at MEMADDR. Returns errno value.
1999-07-07 22:19:36 +02:00
* sb/sh instructions don't work on unaligned addresses, when TU=1.
*/
/* Read LEN bytes from inferior memory at MEMADDR. Put the result
at debugger address MYADDR. Returns errno value. */
static int
2000-07-30 03:48:28 +02:00
bug_read_memory (CORE_ADDR memaddr, unsigned char *myaddr, int len)
{
char request[100];
char *buffer;
char *p;
char type;
char size;
unsigned char c;
unsigned int inaddr;
unsigned int checksum;
2001-04-02 16:47:22 +02:00
sprintf (request, "du 0 %lx:&%d", (long) memaddr, len);
1999-07-07 22:19:36 +02:00
sr_write_cr (request);
1999-07-07 22:19:36 +02:00
p = buffer = alloca (len);
/* scan up through the header */
1999-07-07 22:19:36 +02:00
sr_expect ("S0030000FC");
while (p < buffer + len)
{
/* scan off any white space. */
1999-07-07 22:19:36 +02:00
while (sr_readchar () != 'S');;
/* what kind of s-rec? */
1999-07-07 22:19:36 +02:00
type = sr_readchar ();
/* scan record size */
1999-07-07 22:19:36 +02:00
sr_get_hex_byte (&size);
checksum = size;
--size;
inaddr = 0;
switch (type)
{
case '7':
case '8':
case '9':
goto done;
case '3':
1999-07-07 22:19:36 +02:00
sr_get_hex_byte (&c);
inaddr = (inaddr << 8) + c;
checksum += c;
--size;
/* intentional fall through */
case '2':
1999-07-07 22:19:36 +02:00
sr_get_hex_byte (&c);
inaddr = (inaddr << 8) + c;
checksum += c;
--size;
/* intentional fall through */
case '1':
1999-07-07 22:19:36 +02:00
sr_get_hex_byte (&c);
inaddr = (inaddr << 8) + c;
checksum += c;
--size;
1999-07-07 22:19:36 +02:00
sr_get_hex_byte (&c);
inaddr = (inaddr << 8) + c;
checksum += c;
--size;
break;
default:
/* bonk */
1999-07-07 22:19:36 +02:00
error ("reading s-records.");
}
if (inaddr < memaddr
|| (memaddr + len) < (inaddr + size))
1999-07-07 22:19:36 +02:00
error ("srec out of memory range.");
if (p != buffer + inaddr - memaddr)
1999-07-07 22:19:36 +02:00
error ("srec out of sequence.");
for (; size; --size, ++p)
{
1999-07-07 22:19:36 +02:00
sr_get_hex_byte (p);
checksum += *p;
}
1999-07-07 22:19:36 +02:00
sr_get_hex_byte (&c);
if (c != (~checksum & 0xff))
1999-07-07 22:19:36 +02:00
error ("bad s-rec checksum");
}
1999-07-07 22:19:36 +02:00
done:
gr_expect_prompt ();
if (p != buffer + len)
1999-07-07 22:19:36 +02:00
return (1);
1999-07-07 22:19:36 +02:00
memcpy (myaddr, buffer, len);
return (0);
}
#define MAX_BREAKS 16
static int num_brkpts = 0;
2000-10-04 00:42:32 +02:00
/* Insert a breakpoint at ADDR. SAVE is normally the address of the
pattern buffer where the instruction that the breakpoint overwrites
is saved. It is unused here since the bug is responsible for
saving/restoring the original instruction. */
static int
2000-10-04 00:42:32 +02:00
bug_insert_breakpoint (CORE_ADDR addr, char *save)
{
sr_check_open ();
if (num_brkpts < MAX_BREAKS)
{
char buffer[100];
num_brkpts++;
2001-04-02 16:47:22 +02:00
sprintf (buffer, "br %lx", (long) addr);
sr_write_cr (buffer);
gr_expect_prompt ();
1999-07-07 22:19:36 +02:00
return (0);
}
else
{
fprintf_filtered (gdb_stderr,
"Too many break points, break point not installed\n");
1999-07-07 22:19:36 +02:00
return (1);
}
}
2000-10-04 00:42:32 +02:00
/* Remove a breakpoint at ADDR. SAVE is normally the previously
saved pattern, but is unused here since the bug is responsible
for saving/restoring instructions. */
static int
2000-10-04 00:42:32 +02:00
bug_remove_breakpoint (CORE_ADDR addr, char *save)
{
if (num_brkpts > 0)
{
char buffer[100];
num_brkpts--;
2001-04-02 16:47:22 +02:00
sprintf (buffer, "nobr %lx", (long) addr);
sr_write_cr (buffer);
gr_expect_prompt ();
}
return (0);
}
/* Clear the bugs notion of what the break points are */
static int
2000-07-30 03:48:28 +02:00
bug_clear_breakpoints (void)
{
1999-07-07 22:19:36 +02:00
if (sr_is_open ())
{
sr_write_cr ("nobr");
1999-07-07 22:19:36 +02:00
sr_expect ("nobr");
gr_expect_prompt ();
}
num_brkpts = 0;
1999-07-07 22:19:36 +02:00
return (0);
}
1999-07-07 22:19:36 +02:00
struct target_ops bug_ops;
1999-07-07 22:19:36 +02:00
static void
init_bug_ops (void)
{
1999-07-07 22:19:36 +02:00
bug_ops.to_shortname = "bug";
"Remote BUG monitor",
bug_ops.to_longname = "Use the mvme187 board running the BUG monitor connected by a serial line.";
bug_ops.to_doc = " ";
bug_ops.to_open = bug_open;
bug_ops.to_close = gr_close;
bug_ops.to_attach = 0;
bug_ops.to_post_attach = NULL;
bug_ops.to_require_attach = NULL;
1999-07-07 22:19:36 +02:00
bug_ops.to_detach = gr_detach;
bug_ops.to_require_detach = NULL;
1999-07-07 22:19:36 +02:00
bug_ops.to_resume = bug_resume;
bug_ops.to_wait = bug_wait;
bug_ops.to_post_wait = NULL;
1999-07-07 22:19:36 +02:00
bug_ops.to_fetch_registers = bug_fetch_register;
bug_ops.to_store_registers = bug_store_register;
bug_ops.to_prepare_to_store = gr_prepare_to_store;
bug_ops.to_xfer_memory = bug_xfer_memory;
bug_ops.to_files_info = gr_files_info;
bug_ops.to_insert_breakpoint = bug_insert_breakpoint;
bug_ops.to_remove_breakpoint = bug_remove_breakpoint;
bug_ops.to_terminal_init = 0;
bug_ops.to_terminal_inferior = 0;
bug_ops.to_terminal_ours_for_output = 0;
bug_ops.to_terminal_ours = 0;
bug_ops.to_terminal_info = 0;
bug_ops.to_kill = gr_kill;
bug_ops.to_load = bug_load;
bug_ops.to_lookup_symbol = 0;
bug_ops.to_create_inferior = gr_create_inferior;
bug_ops.to_post_startup_inferior = NULL;
bug_ops.to_acknowledge_created_inferior = NULL;
1999-07-07 22:19:36 +02:00
bug_ops.to_clone_and_follow_inferior = NULL;
bug_ops.to_post_follow_inferior_by_clone = NULL;
bug_ops.to_insert_fork_catchpoint = NULL;
bug_ops.to_remove_fork_catchpoint = NULL;
bug_ops.to_insert_vfork_catchpoint = NULL;
1999-07-07 22:19:36 +02:00
bug_ops.to_remove_vfork_catchpoint = NULL;
bug_ops.to_has_forked = NULL;
1999-07-07 22:19:36 +02:00
bug_ops.to_has_vforked = NULL;
bug_ops.to_can_follow_vfork_prior_to_exec = NULL;
bug_ops.to_post_follow_vfork = NULL;
bug_ops.to_insert_exec_catchpoint = NULL;
bug_ops.to_remove_exec_catchpoint = NULL;
bug_ops.to_has_execd = NULL;
bug_ops.to_reported_exec_events_per_exec_call = NULL;
bug_ops.to_has_exited = NULL;
1999-07-07 22:19:36 +02:00
bug_ops.to_mourn_inferior = gr_mourn;
bug_ops.to_can_run = 0;
bug_ops.to_notice_signals = 0;
bug_ops.to_thread_alive = 0;
bug_ops.to_stop = 0;
bug_ops.to_pid_to_exec_file = NULL;
1999-07-07 22:19:36 +02:00
bug_ops.to_stratum = process_stratum;
bug_ops.DONT_USE = 0;
bug_ops.to_has_all_memory = 1;
bug_ops.to_has_memory = 1;
bug_ops.to_has_stack = 1;
bug_ops.to_has_registers = 0;
bug_ops.to_has_execution = 0;
bug_ops.to_sections = 0;
bug_ops.to_sections_end = 0;
bug_ops.to_magic = OPS_MAGIC; /* Always the last thing */
} /* init_bug_ops */
void
2000-07-30 03:48:28 +02:00
_initialize_remote_bug (void)
{
1999-07-07 22:19:36 +02:00
init_bug_ops ();
add_target (&bug_ops);
add_show_from_set
(add_set_cmd ("srec-bytes", class_support, var_uinteger,
(char *) &srec_bytes,
"\
Set the number of bytes represented in each S-record.\n\
This affects the communication protocol with the remote target.",
&setlist),
&showlist);
add_show_from_set
(add_set_cmd ("srec-max-retries", class_support, var_uinteger,
(char *) &srec_max_retries,
"\
Set the number of retries for shipping S-records.\n\
This affects the communication protocol with the remote target.",
&setlist),
&showlist);
#if 0
/* This needs to set SREC_SIZE, not srec_frame which gets changed at the
end of a download. But do we need the option at all? */
add_show_from_set
(add_set_cmd ("srec-frame", class_support, var_uinteger,
(char *) &srec_frame,
"\
Set the number of bytes in an S-record frame.\n\
This affects the communication protocol with the remote target.",
&setlist),
&showlist);
#endif /* 0 */
add_show_from_set
(add_set_cmd ("srec-noise", class_support, var_zinteger,
(char *) &srec_noise,
"\
Set number of S-record to send before deliberately flubbing a checksum.\n\
Zero means flub none at all. This affects the communication protocol\n\
with the remote target.",
&setlist),
&showlist);
add_show_from_set
(add_set_cmd ("srec-sleep", class_support, var_zinteger,
(char *) &srec_sleep,
"\
Set number of seconds to sleep after an S-record for a possible error message to arrive.\n\
This affects the communication protocol with the remote target.",
&setlist),
&showlist);
add_show_from_set
(add_set_cmd ("srec-echo-pace", class_support, var_boolean,
(char *) &srec_echo_pace,
"\
Set echo-verification.\n\
When on, use verification by echo when downloading S-records. This is\n\
1999-07-07 22:19:36 +02:00
much slower, but generally more reliable.",
&setlist),
&showlist);
}