home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 7 / FreshFishVol7.bin / bbs / gnu / gdb-4.12-src.lha / GNU / src / amiga / gdb-4.12 / gdb / remote-bug.c < prev    next >
C/C++ Source or Header  |  1994-02-03  |  25KB  |  1,054 lines

  1. /* Remote debugging interface for Motorola's MVME187BUG monitor, an embedded
  2.    monitor for the m88k.
  3.  
  4.    Copyright 1992, 1993 Free Software Foundation, Inc.
  5.    Contributed by Cygnus Support.  Written by K. Richard Pixley.
  6.  
  7. This file is part of GDB.
  8.  
  9. This program is free software; you can redistribute it and/or modify
  10. it under the terms of the GNU General Public License as published by
  11. the Free Software Foundation; either version 2 of the License, or
  12. (at your option) any later version.
  13.  
  14. This program is distributed in the hope that it will be useful,
  15. but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17. GNU General Public License for more details.
  18.  
  19. You should have received a copy of the GNU General Public License
  20. along with this program; if not, write to the Free Software
  21. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  22.  
  23. #include "defs.h"
  24. #include "inferior.h"
  25. #include "wait.h"
  26.  
  27. #include <string.h>
  28. #include <ctype.h>
  29. #include <fcntl.h>
  30. #include <signal.h>
  31. #include <setjmp.h>
  32. #include <errno.h>
  33.  
  34. #include "terminal.h"
  35. #include "gdbcore.h"
  36. #include "gdbcmd.h"
  37.  
  38. #include "remote-utils.h"
  39.  
  40. extern int sleep();
  41.  
  42. /* External data declarations */
  43. extern int stop_soon_quietly;    /* for wait_for_inferior */
  44.  
  45. /* Forward data declarations */
  46. extern struct target_ops bug_ops;    /* Forward declaration */
  47.  
  48. /* Forward function declarations */
  49. static int bug_clear_breakpoints PARAMS((void));
  50.  
  51. static int bug_read_memory PARAMS((CORE_ADDR memaddr,
  52.                         unsigned char *myaddr,
  53.                         int len));
  54.  
  55. static int bug_write_memory PARAMS((CORE_ADDR memaddr,
  56.                          unsigned char *myaddr,
  57.                          int len));
  58.  
  59. /* This variable is somewhat arbitrary.  It's here so that it can be
  60.    set from within a running gdb.  */
  61.  
  62. static int srec_max_retries = 3;
  63.  
  64. /* Each S-record download to the target consists of an S0 header
  65.    record, some number of S3 data records, and one S7 termination
  66.    record.  I call this download a "frame".  Srec_frame says how many
  67.    bytes will be represented in each frame.  */
  68.  
  69. #define SREC_SIZE 160
  70. static int srec_frame = SREC_SIZE;
  71.  
  72. /* This variable determines how many bytes will be represented in each
  73.    S3 s-record.  */
  74.  
  75. static int srec_bytes = 40;
  76.  
  77. /* At one point it appeared to me as though the bug monitor could not
  78.    really be expected to receive two sequential characters at 9600
  79.    baud reliably.  Echo-pacing is an attempt to force data across the
  80.    line even in this condition.  Specifically, in echo-pace mode, each
  81.    character is sent one at a time and we look for the echo before
  82.    sending the next.  This is excruciatingly slow.  */
  83.  
  84. static int srec_echo_pace = 0;
  85.  
  86. /* How long to wait after an srec for a possible error message.
  87.    Similar to the above, I tried sleeping after sending each S3 record
  88.    in hopes that I might actually see error messages from the bug
  89.    monitor.  This might actually work if we were to use sleep
  90.    intervals smaller than 1 second.  */
  91.  
  92. static int srec_sleep = 0;
  93.  
  94. /* Every srec_noise records, flub the checksum.  This is a debugging
  95.    feature.  Set the variable to something other than 1 in order to
  96.    inject *deliberate* checksum errors.  One might do this if one
  97.    wanted to test error handling and recovery.  */
  98.  
  99. static int srec_noise = 0;
  100.  
  101. /* Called when SIGALRM signal sent due to alarm() timeout.  */
  102.  
  103. /* Number of SIGTRAPs we need to simulate.  That is, the next
  104.    NEED_ARTIFICIAL_TRAP calls to bug_wait should just return
  105.    SIGTRAP without actually waiting for anything.  */
  106.  
  107. static int need_artificial_trap = 0;
  108.  
  109. /*
  110.  * Download a file specified in 'args', to the bug.
  111.  */
  112.  
  113. static void
  114. bug_load (args, fromtty)
  115.      char *args;
  116.      int fromtty;
  117. {
  118.   bfd *abfd;
  119.   asection *s;
  120.   char buffer[1024];
  121.  
  122.   sr_check_open ();
  123.  
  124.   dcache_flush (gr_get_dcache());
  125.   inferior_pid = 0;
  126.   abfd = bfd_openr (args, 0);
  127.   if (!abfd)
  128.     {
  129.       printf_filtered ("Unable to open file %s\n", args);
  130.       return;
  131.     }
  132.  
  133.   if (bfd_check_format (abfd, bfd_object) == 0)
  134.     {
  135.       printf_filtered ("File is not an object file\n");
  136.       return;
  137.     }
  138.  
  139.   s = abfd->sections;
  140.   while (s != (asection *) NULL)
  141.     {
  142.       srec_frame = SREC_SIZE;
  143.       if (s->flags & SEC_LOAD)
  144.     {
  145.       int i;
  146.  
  147.       char *buffer = xmalloc (srec_frame);
  148.  
  149.       printf_filtered ("%s\t: 0x%4x .. 0x%4x  ", s->name, s->vma, s->vma + s->_raw_size);
  150.       fflush (stdout);
  151.       for (i = 0; i < s->_raw_size; i += srec_frame)
  152.         {
  153.           if (srec_frame > s->_raw_size - i)
  154.         srec_frame = s->_raw_size - i;
  155.  
  156.           bfd_get_section_contents (abfd, s, buffer, i, srec_frame);
  157.           bug_write_memory (s->vma + i, buffer, srec_frame);
  158.           printf_filtered ("*");
  159.           fflush (stdout);
  160.         }
  161.       printf_filtered ("\n");
  162.       free (buffer);
  163.     }
  164.       s = s->next;
  165.     }
  166.   sprintf (buffer, "rs ip %lx", (unsigned long) abfd->start_address);
  167.   sr_write_cr (buffer);
  168.   gr_expect_prompt ();
  169. }
  170.  
  171. #if 0
  172. static char *
  173. get_word (p)
  174.      char **p;
  175. {
  176.   char *s = *p;
  177.   char *word;
  178.   char *copy;
  179.   size_t len;
  180.  
  181.   while (isspace (*s))
  182.     s++;
  183.  
  184.   word = s;
  185.  
  186.   len = 0;
  187.  
  188.   while (*s && !isspace (*s))
  189.     {
  190.       s++;
  191.       len++;
  192.  
  193.     }
  194.   copy = xmalloc (len + 1);
  195.   memcpy (copy, word, len);
  196.   copy[len] = 0;
  197.   *p = s;
  198.   return copy;
  199. }
  200. #endif
  201.  
  202. static struct gr_settings bug_settings = {
  203.   NULL,    /* dcache */
  204.   "Bug>", /* prompt */
  205.   &bug_ops, /* ops */
  206.   bug_clear_breakpoints, /* clear_all_breakpoints */
  207.   bug_read_memory, /* readfunc */
  208.   bug_write_memory, /* writefunc */
  209.   gr_generic_checkin, /* checkin */
  210. };
  211.  
  212. static char *cpu_check_strings[] = {
  213.   "=",
  214.   "Invalid Register",
  215. };
  216.  
  217. static void
  218. bug_open (args, from_tty)
  219.      char *args;
  220.      int from_tty;
  221. {
  222.   if (args == NULL)
  223.       args = "";
  224.  
  225.   gr_open(args, from_tty, &bug_settings);
  226.   /* decide *now* whether we are on an 88100 or an 88110 */
  227.   sr_write_cr("rs cr06");
  228.   sr_expect("rs cr06");
  229.  
  230.   switch (gr_multi_scan(cpu_check_strings, 0))
  231.     {
  232.     case 0: /* this is an m88100 */
  233.       target_is_m88110 = 0;
  234.       break;
  235.     case 1: /* this is an m88110 */
  236.       target_is_m88110 = 1;
  237.       break;
  238.     default:
  239.       abort();
  240.     }
  241. }
  242.  
  243. /* Tell the remote machine to resume.  */
  244.  
  245. void
  246. bug_resume (pid, step, sig)
  247.      int pid, step;
  248.      enum target_signal sig;
  249. {
  250.   dcache_flush (gr_get_dcache());
  251.  
  252.   if (step)
  253.     {
  254.       sr_write_cr("t");
  255.  
  256.       /* Force the next bug_wait to return a trap.  Not doing anything
  257.        about I/O from the target means that the user has to type
  258.        "continue" to see any.  FIXME, this should be fixed.  */
  259.       need_artificial_trap = 1;
  260.     }
  261.   else
  262.       sr_write_cr ("g");
  263.  
  264.   return;
  265. }
  266.  
  267. /* Wait until the remote machine stops, then return,
  268.    storing status in STATUS just as `wait' would.  */
  269.  
  270. static char *wait_strings[] = {
  271.   "At Breakpoint",
  272.   "Exception: Data Access Fault (Local Bus Timeout)",
  273.   "\r8???-Bug>",
  274.   "\r197-Bug>",
  275.   NULL,
  276. };
  277.  
  278. int
  279. bug_wait (pid, status)
  280.      int pid;
  281.      struct target_waitstatus *status;
  282. {
  283.   int old_timeout = sr_get_timeout();
  284.   int old_immediate_quit = immediate_quit;
  285.  
  286.   status->kind = TARGET_WAITKIND_EXITED;
  287.   status->value.integer = 0;
  288.  
  289.   /* read off leftovers from resume so that the rest can be passed
  290.      back out as stdout.  */
  291.   if (need_artificial_trap == 0)
  292.     {
  293.       sr_expect("Effective address: ");
  294.       (void) sr_get_hex_word();
  295.       sr_expect ("\r\n");
  296.     }
  297.  
  298.   sr_set_timeout(-1); /* Don't time out -- user program is running. */
  299.   immediate_quit = 1; /* Helps ability to QUIT */
  300.  
  301.   switch (gr_multi_scan(wait_strings, need_artificial_trap == 0))
  302.     {
  303.     case 0: /* breakpoint case */
  304.       status->kind = TARGET_WAITKIND_STOPPED;
  305.       status->value.sig = TARGET_SIGNAL_TRAP;
  306.       /* user output from the target can be discarded here. (?) */
  307.       gr_expect_prompt();
  308.       break;
  309.  
  310.     case 1: /* bus error */
  311.       status->kind = TARGET_WAITKIND_STOPPED;
  312.       status->value.sig = TARGET_SIGNAL_BUS;
  313.       /* user output from the target can be discarded here. (?) */
  314.       gr_expect_prompt();
  315.       break;
  316.  
  317.     case 2: /* normal case */
  318.     case 3:
  319.       if (need_artificial_trap != 0)
  320.     {
  321.       /* stepping */
  322.       status->kind = TARGET_WAITKIND_STOPPED;
  323.       status->value.sig = TARGET_SIGNAL_TRAP;
  324.       need_artificial_trap--;
  325.       b