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