* objfiles.c (build_objfile_section_table): Don't abort() if
[deliverable/binutils-gdb.git] / gdb / remote-bug.c
CommitLineData
5905161c
RP
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
7This file is part of GDB.
8
9This program is free software; you can redistribute it and/or modify
10it under the terms of the GNU General Public License as published by
11the Free Software Foundation; either version 2 of the License, or
12(at your option) any later version.
13
14This program is distributed in the hope that it will be useful,
15but WITHOUT ANY WARRANTY; without even the implied warranty of
16MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17GNU General Public License for more details.
18
19You should have received a copy of the GNU General Public License
20along with this program; if not, write to the Free Software
21Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
22
23#include "defs.h"
24#include "inferior.h"
25#include "wait.h"
be58e87e 26
5905161c
RP
27#include <string.h>
28#include <ctype.h>
29#include <fcntl.h>
30#include <signal.h>
31#include <setjmp.h>
32#include <errno.h>
be58e87e 33
5905161c 34#include "terminal.h"
5905161c 35#include "gdbcore.h"
be58e87e
RP
36#include "gdbcmd.h"
37
c6f494e8 38#include "remote-utils.h"
755892d6 39
be58e87e 40extern int sleep();
5905161c
RP
41
42/* External data declarations */
43extern int stop_soon_quietly; /* for wait_for_inferior */
44
45/* Forward data declarations */
ae87844d 46extern struct target_ops bug_ops; /* Forward declaration */
5905161c
RP
47
48/* Forward function declarations */
755892d6 49static int bug_clear_breakpoints PARAMS((void));
be58e87e 50
c6f494e8 51static int bug_read_memory PARAMS((CORE_ADDR memaddr,
755892d6
RP
52 unsigned char *myaddr,
53 int len));
be58e87e 54
c6f494e8 55static int bug_write_memory PARAMS((CORE_ADDR memaddr,
755892d6
RP
56 unsigned char *myaddr,
57 int len));
be58e87e 58
be58e87e
RP
59/* This variable is somewhat arbitrary. It's here so that it can be
60 set from within a running gdb. */
61
62static 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
69static int srec_frame = 160;
70
71/* This variable determines how many bytes will be represented in each
72 S3 s-record. */
73
74static int srec_bytes = 40;
75
76/* At one point it appeared to me as though the bug monitor could not
77 really be expected to receive two sequential characters at 9600
78 baud reliably. Echo-pacing is an attempt to force data across the
79 line even in this condition. Specifically, in echo-pace mode, each
80 character is sent one at a time and we look for the echo before
81 sending the next. This is excruciatingly slow. */
5905161c 82
be58e87e
RP
83static int srec_echo_pace = 0;
84
85/* How long to wait after an srec for a possible error message.
86 Similar to the above, I tried sleeping after sending each S3 record
87 in hopes that I might actually see error messages from the bug
88 monitor. This might actually work if we were to use sleep
89 intervals smaller than 1 second. */
90
91static int srec_sleep = 0;
92
93/* Every srec_noise records, flub the checksum. This is a debugging
94 feature. Set the variable to something other than 1 in order to
95 inject *deliberate* checksum errors. One might do this if one
96 wanted to test error handling and recovery. */
97
98static int srec_noise = 0;
5905161c 99
5905161c
RP
100/* Called when SIGALRM signal sent due to alarm() timeout. */
101
102/* Number of SIGTRAPs we need to simulate. That is, the next
103 NEED_ARTIFICIAL_TRAP calls to bug_wait should just return
104 SIGTRAP without actually waiting for anything. */
105
106static int need_artificial_trap = 0;
107
5905161c
RP
108/*
109 * Download a file specified in 'args', to the bug.
110 */
be58e87e 111
5905161c
RP
112static void
113bug_load (args, fromtty)
114 char *args;
115 int fromtty;
116{
117 bfd *abfd;
118 asection *s;
5905161c
RP
119 char buffer[1024];
120
c6f494e8 121 sr_check_open ();
5905161c 122
c6f494e8 123 dcache_flush (gr_get_dcache());
5905161c
RP
124 inferior_pid = 0;
125 abfd = bfd_openr (args, 0);
126 if (!abfd)
127 {
128 printf_filtered ("Unable to open file %s\n", args);
129 return;
130 }
131
132 if (bfd_check_format (abfd, bfd_object) == 0)
133 {
134 printf_filtered ("File is not an object file\n");
135 return;
136 }
137
138 s = abfd->sections;
139 while (s != (asection *) NULL)
140 {
141 if (s->flags & SEC_LOAD)
142 {
143 int i;
144
be58e87e 145 char *buffer = xmalloc (srec_frame);
5905161c
RP
146
147 printf_filtered ("%s\t: 0x%4x .. 0x%4x ", s->name, s->vma, s->vma + s->_raw_size);
be58e87e
RP
148 fflush (stdout);
149 for (i = 0; i < s->_raw_size; i += srec_frame)
5905161c 150 {
be58e87e
RP
151 if (srec_frame > s->_raw_size - i)
152 srec_frame = s->_raw_size - i;
5905161c 153
be58e87e 154 bfd_get_section_contents (abfd, s, buffer, i, srec_frame);
c6f494e8 155 bug_write_memory (s->vma + i, buffer, srec_frame);
5905161c
RP
156 printf_filtered ("*");
157 fflush (stdout);
158 }
159 printf_filtered ("\n");
160 free (buffer);
161 }
162 s = s->next;
163 }
be58e87e 164 sprintf (buffer, "rs ip %lx", (unsigned long) abfd->start_address);
c6f494e8
RP
165 sr_write_cr (buffer);
166 gr_expect_prompt ();
5905161c
RP
167}
168
c6f494e8 169#if 0
5905161c
RP
170static char *
171get_word (p)
172 char **p;
173{
174 char *s = *p;
175 char *word;
176 char *copy;
177 size_t len;
178
179 while (isspace (*s))
180 s++;
181
182 word = s;
183
184 len = 0;
185
186 while (*s && !isspace (*s))
187 {
188 s++;
189 len++;
190
191 }
192 copy = xmalloc (len + 1);
193 memcpy (copy, word, len);
194 copy[len] = 0;
195 *p = s;
196 return copy;
197}
c6f494e8 198#endif
5905161c 199
c6f494e8
RP
200static struct gr_settings bug_settings = {
201 NULL, /* dcache */
202 "Bug>", /* prompt */
203 &bug_ops, /* ops */
204 bug_clear_breakpoints, /* clear_all_breakpoints */
205 bug_read_memory, /* readfunc */
206 bug_write_memory, /* writefunc */
207 gr_generic_checkin, /* checkin */
208};
5905161c 209
c6f494e8
RP
210static char *cpu_check_strings[] = {
211 "=",
212 "Invalid Register",
213};
5905161c
RP
214
215static void
c6f494e8 216bug_open (args, from_tty)
5905161c
RP
217 char *args;
218 int from_tty;
219{
c6f494e8
RP
220 if (args == NULL)
221 args = "";
5905161c 222
c6f494e8
RP
223 gr_open(args, from_tty, &bug_settings);
224 /* decide *now* whether we are on an 88100 or an 88110 */
225 sr_write_cr("rs cr06");
226 sr_expect("rs cr06");
5905161c 227
817ac7f8 228 switch (gr_multi_scan(cpu_check_strings, 0))
c6f494e8
RP
229 {
230 case 0: /* this is an m88100 */
231 target_is_m88110 = 0;
232 break;
233 case 1: /* this is an m88110 */
234 target_is_m88110 = 1;
235 break;
236 default:
237 abort();
238 }
5905161c
RP
239}
240
241/* Tell the remote machine to resume. */
242
243void
be58e87e
RP
244bug_resume (pid, step, sig)
245 int pid, step, sig;
5905161c 246{
c6f494e8 247 dcache_flush (gr_get_dcache());
5905161c
RP
248
249 if (step)
250 {
c6f494e8 251 sr_write_cr("t");
5905161c
RP
252
253 /* Force the next bug_wait to return a trap. Not doing anything
254 about I/O from the target means that the user has to type
255 "continue" to see any. FIXME, this should be fixed. */
256 need_artificial_trap = 1;
257 }
258 else
c6f494e8 259 sr_write_cr ("g");
5905161c
RP
260
261 return;
262}
263
be58e87e
RP
264/* Wait until the remote machine stops, then return,
265 storing status in STATUS just as `wait' would. */
266
16f6ab6b
RP
267static char *wait_strings[] = {
268 "At Breakpoint",
269 "Exception: Data Access Fault (Local Bus Timeout)",
270 "\r8???-Bug>",
c6f494e8 271 "\r197-Bug>",
16f6ab6b
RP
272 NULL,
273};
274
be58e87e 275int
de43d7d0
SG
276bug_wait (pid, status)
277 int pid;
be58e87e
RP
278 WAITTYPE *status;
279{
c6f494e8 280 int old_timeout = sr_get_timeout();
be58e87e
RP
281 int old_immediate_quit = immediate_quit;
282
283 WSETEXIT ((*status), 0);
284
16f6ab6b
RP
285 /* read off leftovers from resume so that the rest can be passed
286 back out as stdout. */
287 if (need_artificial_trap == 0)
5905161c 288 {
c6f494e8
RP
289 sr_expect("Effective address: ");
290 (void) sr_get_hex_word();
291 sr_expect ("\r\n");
5905161c 292 }
be58e87e 293
c6f494e8 294 sr_set_timeout(-1); /* Don't time out -- user program is running. */
be58e87e
RP
295 immediate_quit = 1; /* Helps ability to QUIT */
296
c6f494e8 297 switch (gr_multi_scan(wait_strings, need_artificial_trap == 0))
5905161c 298 {
16f6ab6b 299 case 0: /* breakpoint case */
be58e87e 300 WSETSTOP ((*status), SIGTRAP);
16f6ab6b 301 /* user output from the target can be discarded here. (?) */
c6f494e8 302 gr_expect_prompt();
16f6ab6b
RP
303 break;
304
305 case 1: /* bus error */
306 WSETSTOP ((*status), SIGBUS);
307 /* user output from the target can be discarded here. (?) */
c6f494e8 308 gr_expect_prompt();
16f6ab6b
RP
309 break;
310
311 case 2: /* normal case */
c6f494e8 312 case 3:
16f6ab6b
RP
313 if (need_artificial_trap != 0)
314 {
315 /* stepping */
316 WSETSTOP ((*status), SIGTRAP);
317 need_artificial_trap--;
318 break;
319 }
320 else
321 {
322 /* exit case */
323 WSETEXIT ((*status), 0);
324 break;
325 }
be58e87e 326
16f6ab6b
RP
327 case -1: /* trouble */
328 default:
329 fprintf_filtered (stderr,
330 "Trouble reading target during wait\n");
331 break;
332 }
5905161c 333
c6f494e8 334 sr_set_timeout(old_timeout);
5905161c
RP
335 immediate_quit = old_immediate_quit;
336 return 0;
337}
338
339/* Return the name of register number REGNO
340 in the form input and output by bug.
341
342 Returns a pointer to a static buffer containing the answer. */
343static char *
344get_reg_name (regno)
345 int regno;
346{
347 static char *rn[] = {
348 "r00", "r01", "r02", "r03", "r04", "r05", "r06", "r07",
349 "r08", "r09", "r10", "r11", "r12", "r13", "r14", "r15",
350 "r16", "r17", "r18", "r19", "r20", "r21", "r22", "r23",
351 "r24", "r25", "r26", "r27", "r28", "r29", "r30", "r31",
352
353 /* these get confusing because we omit a few and switch some ordering around. */
354
355 "cr01", /* 32 = psr */
356 "fcr62", /* 33 = fpsr*/
357 "fcr63", /* 34 = fpcr */
be58e87e
RP
358 "ip", /* this is something of a cheat. */
359 /* 35 = sxip */
5905161c
RP
360 "cr05", /* 36 = snip */
361 "cr06", /* 37 = sfip */
c6f494e8
RP
362
363 "x00", "x01", "x02", "x03", "x04", "x05", "x06", "x07",
364 "x08", "x09", "x10", "x11", "x12", "x13", "x14", "x15",
365 "x16", "x17", "x18", "x19", "x20", "x21", "x22", "x23",
366 "x24", "x25", "x26", "x27", "x28", "x29", "x30", "x31",
5905161c
RP
367 };
368
369 return rn[regno];
370}
371
16f6ab6b 372#if 0 /* not currently used */
be58e87e
RP
373/* Read from remote while the input matches STRING. Return zero on
374 success, -1 on failure. */
375
376static int
377bug_scan (s)
378 char *s;
379{
380 int c;
381
382 while (*s)
383 {
c6f494e8 384 c = sr_readchar();
be58e87e
RP
385 if (c != *s++)
386 {
387 fflush(stdout);
388 printf("\nNext character is '%c' - %d and s is \"%s\".\n", c, c, --s);
389 return(-1);
390 }
391 }
392
393 return(0);
394}
16f6ab6b 395#endif /* never */
be58e87e
RP
396
397static int
398bug_srec_write_cr (s)
399 char *s;
400{
401 char *p = s;
402
403 if (srec_echo_pace)
404 for (p = s; *p; ++p)
405 {
c6f494e8 406 if (sr_get_debug() > 0)
be58e87e
RP
407 printf ("%c", *p);
408
409 do
c6f494e8
RP
410 SERIAL_WRITE(sr_get_desc(), p, 1);
411 while (sr_pollchar() != *p);
be58e87e
RP
412 }
413 else
414 {
c6f494e8 415 sr_write_cr (s);
be58e87e
RP
416/* return(bug_scan (s) || bug_scan ("\n")); */
417 }
418
419 return(0);
5905161c
RP
420}
421
422/* Store register REGNO, or all if REGNO == -1. */
423
424static void
425bug_fetch_register(regno)
426 int regno;
427{
c6f494e8 428 sr_check_open();
5905161c
RP
429
430 if (regno == -1)
431 {
432 int i;
433
434 for (i = 0; i < NUM_REGS; ++i)
435 bug_fetch_register(i);
436 }
817ac7f8
RP
437 else if (target_is_m88110 && regno == SFIP_REGNUM)
438 {
439 /* m88110 has no sfip. */
440 long l = 0;
441 supply_register(regno, (char *) &l);
442 }
c6f494e8 443 else if (regno < XFP_REGNUM)
5905161c 444 {
f4f0d174
JK
445 char buffer[MAX_REGISTER_RAW_SIZE];
446
447 sr_write ("rs ", 3);
448 sr_write_cr (get_reg_name(regno));
449 sr_expect ("=");
450 store_unsigned_integer (buffer, REGISTER_RAW_SIZE (regno),
451 sr_get_hex_word());
452 gr_expect_prompt ();
453 supply_register (regno, buffer);
5905161c 454 }
c6f494e8
RP
455 else
456 {
457 /* Float register so we need to parse a strange data format. */
458 long p;
459 unsigned char value[10];
460
461 sr_write("rs ", 3);
462 sr_write(get_reg_name(regno), strlen(get_reg_name(regno)));
463 sr_write_cr(";d");
464 sr_expect("rs");
465 sr_expect(get_reg_name(regno));
466 sr_expect(";d");
467 sr_expect("=");
468
469 /* sign */
470 p = sr_get_hex_digit(1);
471 value[0] = p << 7;
472
473 /* exponent */
474 sr_expect("_");
475 p = sr_get_hex_digit(1);
476 value[0] += (p << 4);
477 value[0] += sr_get_hex_digit(1);
478
479 value[1] = sr_get_hex_digit(1) << 4;
480
481 /* fraction */
482 sr_expect("_");
483 value[1] += sr_get_hex_digit(1);
484
485 value[2] = (sr_get_hex_digit(1) << 4) + sr_get_hex_digit(1);
486 value[3] = (sr_get_hex_digit(1) << 4) + sr_get_hex_digit(1);
487 value[4] = (sr_get_hex_digit(1) << 4) + sr_get_hex_digit(1);
488 value[5] = (sr_get_hex_digit(1) << 4) + sr_get_hex_digit(1);
489 value[6] = (sr_get_hex_digit(1) << 4) + sr_get_hex_digit(1);
490 value[7] = (sr_get_hex_digit(1) << 4) + sr_get_hex_digit(1);
491 value[8] = 0;
492 value[9] = 0;
493
494 gr_expect_prompt();
495 supply_register(regno, value);
496 }
5905161c
RP
497
498 return;
499}
500
501/* Store register REGNO, or all if REGNO == -1. */
502
503static void
504bug_store_register (regno)
505 int regno;
506{
5905161c 507 char buffer[1024];
c6f494e8 508 sr_check_open();
5905161c
RP
509
510 if (regno == -1)
511 {
512 int i;
513
514 for (i = 0; i < NUM_REGS; ++i)
515 bug_store_register(i);
516 }
517 else
518 {
519 char *regname;
520
c6f494e8 521 regname = get_reg_name(regno);
5905161c 522
817ac7f8
RP
523 if (target_is_m88110 && regno == SFIP_REGNUM)
524 return;
525 else if (regno < XFP_REGNUM)
c6f494e8
RP
526 sprintf(buffer, "rs %s %08x",
527 regname,
528 read_register(regno));
529 else
530 {
531 unsigned char *value = &registers[REGISTER_BYTE(regno)];
532
817ac7f8 533 sprintf(buffer, "rs %s %1x_%02x%1x_%1x%02x%02x%02x%02x%02x%02x;d",
c6f494e8
RP
534 regname,
535 /* sign */
536 (value[0] >> 7) & 0xf,
537 /* exponent */
538 value[0] & 0x7f,
539 (value[1] >> 8) & 0xf,
540 /* fraction */
541 value[1] & 0xf,
542 value[2],
543 value[3],
544 value[4],
545 value[5],
546 value[6],
547 value[7]);
548 }
5905161c 549
c6f494e8
RP
550 sr_write_cr(buffer);
551 gr_expect_prompt();
5905161c
RP
552 }
553
554 return;
555}
556
5905161c 557int
c6f494e8 558bug_xfer_memory (memaddr, myaddr, len, write, target)
5905161c
RP
559 CORE_ADDR memaddr;
560 char *myaddr;
561 int len;
562 int write;
563 struct target_ops *target; /* ignored */
564{
565 register int i;
566
567 /* Round starting address down to longword boundary. */
568 register CORE_ADDR addr;
569
570 /* Round ending address up; get number of longwords that makes. */
571 register int count;
572
573 /* Allocate buffer of that many longwords. */
574 register int *buffer;
575
576 addr = memaddr & -sizeof (int);
577 count = (((memaddr + len) - addr) + sizeof (int) - 1) / sizeof (int);
578
579 buffer = (int *) alloca (count * sizeof (int));
580
581 if (write)
582 {
583 /* Fill start and end extra bytes of buffer with existing memory data. */
584
585 if (addr != memaddr || len < (int) sizeof (int))
586 {
587 /* Need part of initial word -- fetch it. */
c6f494e8 588 buffer[0] = gr_fetch_word (addr);
5905161c
RP
589 }
590
591 if (count > 1) /* FIXME, avoid if even boundary */
592 {
593 buffer[count - 1]
c6f494e8 594 = gr_fetch_word (addr + (count - 1) * sizeof (int));
5905161c
RP
595 }
596
597 /* Copy data to be written over corresponding part of buffer */
598
ade40d31 599 memcpy ((char *) buffer + (memaddr & (sizeof (int) - 1)), myaddr, len);
5905161c
RP
600
601 /* Write the entire buffer. */
602
603 for (i = 0; i < count; i++, addr += sizeof (int))
604 {
605 errno = 0;
c6f494e8 606 gr_store_word (addr, buffer[i]);
5905161c
RP
607 if (errno)
608 {
609
610 return 0;
611 }
612
613 }
614 }
615 else
616 {
617 /* Read all the longwords */
618 for (i = 0; i < count; i++, addr += sizeof (int))
619 {
620 errno = 0;
c6f494e8 621 buffer[i] = gr_fetch_word (addr);
5905161c
RP
622 if (errno)
623 {
624 return 0;
625 }
626 QUIT;
627 }
628
629 /* Copy appropriate bytes out of the buffer. */
ade40d31 630 memcpy (myaddr, (char *) buffer + (memaddr & (sizeof (int) - 1)), len);
5905161c
RP
631 }
632
633 return len;
634}
635
be58e87e
RP
636static void
637start_load()
638{
639 char *command;
640
641 command = (srec_echo_pace ? "lo 0 ;x" : "lo 0");
642
c6f494e8
RP
643 sr_write_cr (command);
644 sr_expect (command);
645 sr_expect ("\r\n");
be58e87e
RP
646 bug_srec_write_cr ("S0030000FC");
647 return;
648}
649
650/* This is an extremely vulnerable and fragile function. I've made
651 considerable attempts to make this deterministic, but I've
652 certainly forgotten something. The trouble is that S-records are
653 only a partial file format, not a protocol. Worse, apparently the
654 m88k bug monitor does not run in real time while receiving
655 S-records. Hence, we must pay excruciating attention to when and
656 where error messages are returned, and what has actually been sent.
5905161c 657
be58e87e
RP
658 Each call represents a chunk of memory to be sent to the target.
659 We break that chunk into an S0 header record, some number of S3
660 data records each containing srec_bytes, and an S7 termination
661 record. */
662
16f6ab6b
RP
663static char *srecord_strings[] = {
664 "S-RECORD",
c6f494e8 665 "-Bug>",
16f6ab6b
RP
666 NULL,
667};
668
be58e87e 669static int
c6f494e8 670bug_write_memory (memaddr, myaddr, len)
5905161c
RP
671 CORE_ADDR memaddr;
672 unsigned char *myaddr;
673 int len;
674{
675 int done;
5905161c 676 int checksum;
be58e87e
RP
677 int x;
678 int retries;
679 char buffer[(srec_bytes + 8) << 1];
5905161c 680
be58e87e 681 retries = 0;
5905161c 682
be58e87e 683 do
5905161c 684 {
be58e87e
RP
685 done = 0;
686
687 if (retries > srec_max_retries)
688 return(-1);
689
690 if (retries > 0)
5905161c 691 {
c6f494e8 692 if (sr_get_debug() > 0)
be58e87e
RP
693 printf("\n<retrying...>\n");
694
c6f494e8 695 /* This gr_expect_prompt call is extremely important. Without
be58e87e
RP
696 it, we will tend to resend our packet so fast that it
697 will arrive before the bug monitor is ready to receive
698 it. This would lead to a very ugly resend loop. */
699
c6f494e8 700 gr_expect_prompt();
5905161c 701 }
5905161c 702
be58e87e
RP
703 start_load();
704
705 while (done < len)
706 {
707 int thisgo;
708 int idx;
709 char *buf = buffer;
710 CORE_ADDR address;
711
712 checksum = 0;
713 thisgo = len - done;
714 if (thisgo > srec_bytes)
715 thisgo = srec_bytes;
716
717 address = memaddr + done;
718 sprintf (buf, "S3%02X%08X", thisgo + 4 + 1, address);
719 buf += 12;
720
721 checksum += (thisgo + 4 + 1
722 + (address & 0xff)
723 + ((address >> 8) & 0xff)
724 + ((address >> 16) & 0xff)
725 + ((address >> 24) & 0xff));
726
727 for (idx = 0; idx < thisgo; idx++)
728 {
729 sprintf (buf, "%02X", myaddr[idx + done]);
730 checksum += myaddr[idx + done];
731 buf += 2;
732 }
733
734 if (srec_noise > 0)
735 {
736 /* FIXME-NOW: insert a deliberate error every now and then.
737 This is intended for testing/debugging the error handling
738 stuff. */
739 static int counter = 0;
740 if (++counter > srec_noise)
741 {
742 counter = 0;
743 ++checksum;
744 }
745 }
746
747 sprintf(buf, "%02X", ~checksum & 0xff);
748 bug_srec_write_cr (buffer);
749
750 if (srec_sleep != 0)
751 sleep(srec_sleep);
752
c6f494e8 753 /* This pollchar is probably redundant to the gr_multi_scan
be58e87e
RP
754 below. Trouble is, we can't be sure when or where an
755 error message will appear. Apparently, when running at
756 full speed from a typical sun4, error messages tend to
757 appear to arrive only *after* the s7 record. */
758
c6f494e8 759 if ((x = sr_pollchar()) != 0)
be58e87e 760 {
c6f494e8 761 if (sr_get_debug() > 0)
be58e87e
RP
762 printf("\n<retrying...>\n");
763
764 ++retries;
765
766 /* flush any remaining input and verify that we are back
767 at the prompt level. */
c6f494e8 768 gr_expect_prompt();
be58e87e
RP
769 /* start all over again. */
770 start_load();
771 done = 0;
772 continue;
773 }
774
775 done += thisgo;
776 }
777
778 bug_srec_write_cr("S7060000000000F9");
779 ++retries;
780
781 /* Having finished the load, we need to figure out whether we
782 had any errors. */
c6f494e8 783 } while (gr_multi_scan(srecord_strings, 0) == 0);;
be58e87e
RP
784
785 return(0);
5905161c
RP
786}
787
5905161c
RP
788/* Copy LEN bytes of data from debugger memory at MYADDR
789 to inferior's memory at MEMADDR. Returns errno value.
790 * sb/sh instructions don't work on unaligned addresses, when TU=1.
791 */
792
793/* Read LEN bytes from inferior memory at MEMADDR. Put the result
794 at debugger address MYADDR. Returns errno value. */
be58e87e 795static int
c6f494e8 796bug_read_memory (memaddr, myaddr, len)
5905161c 797 CORE_ADDR memaddr;
755892d6 798 unsigned char *myaddr;
5905161c
RP
799 int len;
800{
801 char request[100];
802 char *buffer;
803 char *p;
804 char type;
805 char size;
806 unsigned char c;
807 unsigned int inaddr;
808 unsigned int checksum;
809
810 sprintf(request, "du 0 %x:&%d", memaddr, len);
c6f494e8 811 sr_write_cr(request);
5905161c
RP
812
813 p = buffer = alloca(len);
814
815 /* scan up through the header */
c6f494e8 816 sr_expect("S0030000FC");
5905161c
RP
817
818 while (p < buffer + len)
819 {
820 /* scan off any white space. */
c6f494e8 821 while (sr_readchar() != 'S') ;;
5905161c
RP
822
823 /* what kind of s-rec? */
c6f494e8 824 type = sr_readchar();
5905161c
RP
825
826 /* scan record size */
c6f494e8 827 sr_get_hex_byte(&size);
5905161c
RP
828 checksum = size;
829 --size;
830 inaddr = 0;
831
832 switch (type)
833 {
834 case '7':
835 case '8':
836 case '9':
837 goto done;
838
839 case '3':
c6f494e8 840 sr_get_hex_byte(&c);
5905161c
RP
841 inaddr = (inaddr << 8) + c;
842 checksum += c;
843 --size;
844 /* intentional fall through */
845 case '2':
c6f494e8 846 sr_get_hex_byte(&c);
5905161c
RP
847 inaddr = (inaddr << 8) + c;
848 checksum += c;
849 --size;
850 /* intentional fall through */
851 case '1':
c6f494e8 852 sr_get_hex_byte(&c);
5905161c
RP
853 inaddr = (inaddr << 8) + c;
854 checksum += c;
855 --size;
c6f494e8 856 sr_get_hex_byte(&c);
5905161c
RP
857 inaddr = (inaddr << 8) + c;
858 checksum += c;
859 --size;
860 break;
861
862 default:
863 /* bonk */
864 error("reading s-records.");
865 }
866
867 if (inaddr < memaddr
868 || (memaddr + len) < (inaddr + size))
869 error("srec out of memory range.");
870
871 if (p != buffer + inaddr - memaddr)
872 error("srec out of sequence.");
873
874 for (; size; --size, ++p)
875 {
c6f494e8 876 sr_get_hex_byte(p);
5905161c
RP
877 checksum += *p;
878 }
879
c6f494e8 880 sr_get_hex_byte(&c);
5905161c
RP
881 if (c != (~checksum & 0xff))
882 error("bad s-rec checksum");
883 }
884
885 done:
c6f494e8 886 gr_expect_prompt();
5905161c
RP
887 if (p != buffer + len)
888 return(1);
889
890 memcpy(myaddr, buffer, len);
891 return(0);
892}
893
5905161c
RP
894#define MAX_BREAKS 16
895static int num_brkpts = 0;
896static int
897bug_insert_breakpoint (addr, save)
898 CORE_ADDR addr;
899 char *save; /* Throw away, let bug save instructions */
900{
c6f494e8 901 sr_check_open ();
5905161c
RP
902
903 if (num_brkpts < MAX_BREAKS)
904 {
905 char buffer[100];
906
907 num_brkpts++;
908 sprintf (buffer, "br %x", addr);
c6f494e8
RP
909 sr_write_cr (buffer);
910 gr_expect_prompt ();
5905161c
RP
911 return(0);
912 }
913 else
914 {
915 fprintf_filtered (stderr,
916 "Too many break points, break point not installed\n");
917 return(1);
918 }
919
920}
921static int
922bug_remove_breakpoint (addr, save)
923 CORE_ADDR addr;
924 char *save; /* Throw away, let bug save instructions */
925{
926 if (num_brkpts > 0)
927 {
928 char buffer[100];
929
930 num_brkpts--;
931 sprintf (buffer, "nobr %x", addr);
c6f494e8
RP
932 sr_write_cr (buffer);
933 gr_expect_prompt ();
5905161c
RP
934
935 }
936 return (0);
937}
938
939/* Clear the bugs notion of what the break points are */
940static int
941bug_clear_breakpoints ()
942{
943
c6f494e8 944 if (sr_is_open())
5905161c 945 {
c6f494e8
RP
946 sr_write_cr ("nobr");
947 sr_expect("nobr");
948 gr_expect_prompt ();
5905161c
RP
949 }
950 num_brkpts = 0;
be58e87e 951 return(0);
5905161c 952}
be58e87e 953
ae87844d 954struct target_ops bug_ops =
5905161c
RP
955{
956 "bug", "Remote BUG monitor",
957 "Use the mvme187 board running the BUG monitor connected\n\
958by a serial line.",
959
c6f494e8
RP
960 bug_open, gr_close,
961 0, gr_detach, bug_resume, bug_wait, /* attach */
5905161c 962 bug_fetch_register, bug_store_register,
c6f494e8
RP
963 gr_prepare_to_store,
964 bug_xfer_memory,
965 gr_files_info,
5905161c
RP
966 bug_insert_breakpoint, bug_remove_breakpoint, /* Breakpoints */
967 0, 0, 0, 0, 0, /* Terminal handling */
c6f494e8 968 gr_kill, /* FIXME, kill */
5905161c
RP
969 bug_load,
970 0, /* lookup_symbol */
c6f494e8
RP
971 gr_create_inferior, /* create_inferior */
972 gr_mourn, /* mourn_inferior FIXME */
5905161c
RP
973 0, /* can_run */
974 0, /* notice_signals */
975 process_stratum, 0, /* next */
976 1, 1, 1, 1, 1, /* all mem, mem, stack, regs, exec */
977 0, 0, /* Section pointers */
978 OPS_MAGIC, /* Always the last thing */
979};
980
981void
982_initialize_remote_bug ()
983{
984 add_target (&bug_ops);
985
be58e87e
RP
986 add_show_from_set
987 (add_set_cmd ("srec-bytes", class_support, var_uinteger,
988 (char *) &srec_bytes,
989 "\
990Set the number of bytes represented in each S-record.\n\
991This affects the communication protocol with the remote target.",
992 &setlist),
993 &showlist);
994
995 add_show_from_set
996 (add_set_cmd ("srec-max-retries", class_support, var_uinteger,
997 (char *) &srec_max_retries,
998 "\
999Set the number of retries for shipping S-records.\n\
1000This affects the communication protocol with the remote target.",
1001 &setlist),
1002 &showlist);
1003
1004 add_show_from_set
1005 (add_set_cmd ("srec-frame", class_support, var_uinteger,
1006 (char *) &srec_frame,
1007 "\
1008Set the number of bytes in an S-record frame.\n\
1009This affects the communication protocol with the remote target.",
1010 &setlist),
1011 &showlist);
1012
1013 add_show_from_set
1014 (add_set_cmd ("srec-noise", class_support, var_zinteger,
1015 (char *) &srec_noise,
1016 "\
1017Set number of S-record to send before deliberately flubbing a checksum.\n\
1018Zero means flub none at all. This affects the communication protocol\n\
1019with the remote target.",
1020 &setlist),
1021 &showlist);
1022
1023 add_show_from_set
1024 (add_set_cmd ("srec-sleep", class_support, var_zinteger,
1025 (char *) &srec_sleep,
1026 "\
1027Set number of seconds to sleep after an S-record for a possible error message to arrive.\n\
1028This affects the communication protocol with the remote target.",
1029 &setlist),
1030 &showlist);
1031
1032 add_show_from_set
1033 (add_set_cmd ("srec-echo-pace", class_support, var_boolean,
1034 (char *) &srec_echo_pace,
1035 "\
1036Set echo-verification.\n\
1037When on, use verification by echo when downloading S-records. This is\n\
1038much slower, but generally more reliable.",
1039 &setlist),
1040 &showlist);
5905161c 1041}
This page took 0.097273 seconds and 4 git commands to generate.