]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/remote-e7000.c
Initial creation of sourceware repository
[thirdparty/binutils-gdb.git] / gdb / remote-e7000.c
1 /* Remote debugging interface for Hitachi E7000 ICE, for GDB
2 Copyright 1993, 1994, 1996, 1997, 1998 Free Software Foundation, Inc.
3 Contributed by Cygnus Support.
4
5 Written by Steve Chamberlain for Cygnus Support.
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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
22
23 /* The E7000 is an in-circuit emulator for the Hitachi H8/300-H and
24 Hitachi-SH processor. It has serial port and a lan port.
25
26 The monitor command set makes it difficult to load large ammounts of
27 data over the lan without using ftp - so try not to issue load
28 commands when communicating over ethernet; use the ftpload command.
29
30 The monitor pauses for a second when dumping srecords to the serial
31 line too, so we use a slower per byte mechanism but without the
32 startup overhead. Even so, it's pretty slow... */
33
34 #include "defs.h"
35 #include "gdbcore.h"
36 #include "gdbarch.h"
37 #include "inferior.h"
38 #include "target.h"
39 #include "wait.h"
40 #include "value.h"
41 #include "command.h"
42 #include <signal.h>
43 #include "gdb_string.h"
44 #include "gdbcmd.h"
45 #include <sys/types.h>
46 #include "serial.h"
47 #include "remote-utils.h"
48 #include "symfile.h"
49 #include <time.h>
50 #include <ctype.h>
51
52
53 #if 1
54 #define HARD_BREAKPOINTS /* Now handled by set option. */
55 #define BC_BREAKPOINTS use_hard_breakpoints
56 #endif
57
58 #define CTRLC 0x03
59 #define ENQ 0x05
60 #define ACK 0x06
61 #define CTRLZ 0x1a
62
63 extern void notice_quit PARAMS ((void));
64
65 extern void report_transfer_performance PARAMS ((unsigned long,
66 time_t, time_t));
67
68 extern char *sh_processor_type;
69
70 /* Local function declarations. */
71
72 static void e7000_close PARAMS ((int));
73
74 static void e7000_fetch_register PARAMS ((int));
75
76 static void e7000_store_register PARAMS ((int));
77
78 static void e7000_command PARAMS ((char *, int));
79
80 static void e7000_login_command PARAMS ((char *, int));
81
82 static void e7000_ftp_command PARAMS ((char *, int));
83
84 static void e7000_drain_command PARAMS ((char *, int));
85
86 static void expect PARAMS ((char *));
87
88 static void expect_full_prompt PARAMS ((void));
89
90 static void expect_prompt PARAMS ((void));
91
92 static int e7000_parse_device PARAMS ((char *args, char *dev_name,
93 int baudrate));
94 /* Variables. */
95
96 static serial_t e7000_desc;
97
98 /* Allow user to chose between using hardware breakpoints or memory. */
99 static int use_hard_breakpoints = 0; /* use sw breakpoints by default */
100
101 /* Nonzero if using the tcp serial driver. */
102
103 static int using_tcp; /* direct tcp connection to target */
104 static int using_tcp_remote; /* indirect connection to target
105 via tcp to controller */
106
107 /* Nonzero if using the pc isa card. */
108
109 static int using_pc;
110
111 extern struct target_ops e7000_ops; /* Forward declaration */
112
113 char *ENQSTRING = "\005";
114
115 /* Nonzero if some routine (as opposed to the user) wants echoing.
116 FIXME: Do this reentrantly with an extra parameter. */
117
118 static int echo;
119
120 static int ctrl_c;
121
122 static int timeout = 20;
123
124 /* Send data to e7000debug. */
125
126 static void
127 puts_e7000debug (buf)
128 char *buf;
129 {
130 if (!e7000_desc)
131 error ("Use \"target e7000 ...\" first.");
132
133 if (remote_debug)
134 printf_unfiltered ("Sending %s\n", buf);
135
136 if (SERIAL_WRITE (e7000_desc, buf, strlen (buf)))
137 fprintf_unfiltered (gdb_stderr, "SERIAL_WRITE failed: %s\n", safe_strerror (errno));
138
139 /* And expect to see it echoed, unless using the pc interface */
140 #if 0
141 if (!using_pc)
142 #endif
143 expect (buf);
144 }
145
146 static void
147 putchar_e7000 (x)
148 int x;
149 {
150 char b[1];
151
152 b[0] = x;
153 SERIAL_WRITE (e7000_desc, b, 1);
154 }
155
156 static void
157 write_e7000 (s)
158 char *s;
159 {
160 SERIAL_WRITE (e7000_desc, s, strlen (s));
161 }
162
163 static int
164 normal (x)
165 int x;
166 {
167 if (x == '\n')
168 return '\r';
169 return x;
170 }
171
172 /* Read a character from the remote system, doing all the fancy timeout
173 stuff. Handles serial errors and EOF. If TIMEOUT == 0, and no chars,
174 returns -1, else returns next char. Discards chars > 127. */
175
176 static int
177 readchar (timeout)
178 int timeout;
179 {
180 int c;
181
182 do
183 {
184 c = SERIAL_READCHAR (e7000_desc, timeout);
185 }
186 while (c > 127);
187
188 if (c == SERIAL_TIMEOUT)
189 {
190 if (timeout == 0)
191 return -1;
192 echo = 0;
193 error ("Timeout reading from remote system.");
194 }
195 else if (c < 0)
196 error ("Serial communication error");
197
198 if (remote_debug)
199 {
200 putchar_unfiltered (c);
201 gdb_flush (gdb_stdout);
202 }
203
204 return normal (c);
205 }
206
207 #if 0
208 char *
209 tl (x)
210 {
211 static char b[8][10];
212 static int p;
213
214 p++;
215 p &= 7;
216 if (x >= ' ')
217 {
218 b[p][0] = x;
219 b[p][1] = 0;
220 }
221 else
222 {
223 sprintf(b[p], "<%d>", x);
224 }
225
226 return b[p];
227 }
228 #endif
229
230 /* Scan input from the remote system, until STRING is found. If
231 DISCARD is non-zero, then discard non-matching input, else print it
232 out. Let the user break out immediately. */
233
234 static void
235 expect (string)
236 char *string;
237 {
238 char *p = string;
239 int c;
240 int nl = 0;
241
242 while (1)
243 {
244 c = readchar (timeout);
245 #if 0
246 notice_quit ();
247 if (quit_flag == 1)
248 {
249 if (ctrl_c)
250 {
251 putchar_e7000(CTRLC);
252 --ctrl_c;
253 }
254 else
255 {
256 quit ();
257 }
258 }
259 #endif
260
261 if (echo)
262 {
263 if (c == '\r' || c == '\n')
264 {
265 if (!nl)
266 putchar_unfiltered ('\n');
267 nl = 1;
268 }
269 else
270 {
271 nl = 0;
272 putchar_unfiltered (c);
273 }
274 gdb_flush (gdb_stdout);
275 }
276 if (normal (c) == normal (*p++))
277 {
278 if (*p == '\0')
279 return;
280 }
281 else
282 {
283 p = string;
284
285 if (normal (c) == normal (string[0]))
286 p++;
287 }
288 }
289 }
290
291 /* Keep discarding input until we see the e7000 prompt.
292
293 The convention for dealing with the prompt is that you
294 o give your command
295 o *then* wait for the prompt.
296
297 Thus the last thing that a procedure does with the serial line will
298 be an expect_prompt(). Exception: e7000_resume does not wait for
299 the prompt, because the terminal is being handed over to the
300 inferior. However, the next thing which happens after that is a
301 e7000_wait which does wait for the prompt. Note that this includes
302 abnormal exit, e.g. error(). This is necessary to prevent getting
303 into states from which we can't recover. */
304
305 static void
306 expect_prompt ()
307 {
308 expect (":");
309 }
310
311 static void
312 expect_full_prompt ()
313 {
314 expect ("\r:");
315 }
316
317 static int
318 convert_hex_digit (ch)
319 int ch;
320 {
321 if (ch >= '0' && ch <= '9')
322 return ch - '0';
323 else if (ch >= 'A' && ch <= 'F')
324 return ch - 'A' + 10;
325 else if (ch >= 'a' && ch <= 'f')
326 return ch - 'a' + 10;
327 return -1;
328 }
329
330 static int
331 get_hex (start)
332 int *start;
333 {
334 int value = convert_hex_digit (*start);
335 int try;
336
337 *start = readchar (timeout);
338 while ((try = convert_hex_digit (*start)) >= 0)
339 {
340 value <<= 4;
341 value += try;
342 *start = readchar (timeout);
343 }
344 return value;
345 }
346
347 #if 0
348 /* Get N 32-bit words from remote, each preceded by a space, and put
349 them in registers starting at REGNO. */
350
351 static void
352 get_hex_regs (n, regno)
353 int n;
354 int regno;
355 {
356 long val;
357 int i;
358
359 for (i = 0; i < n; i++)
360 {
361 int j;
362
363 val = 0;
364 for (j = 0; j < 8; j++)
365 val = (val << 4) + get_hex_digit (j == 0);
366 supply_register (regno++, (char *) &val);
367 }
368 }
369 #endif
370
371 /* This is called not only when we first attach, but also when the
372 user types "run" after having attached. */
373
374 static void
375 e7000_create_inferior (execfile, args, env)
376 char *execfile;
377 char *args;
378 char **env;
379 {
380 int entry_pt;
381
382 if (args && *args)
383 error ("Can't pass arguments to remote E7000DEBUG process");
384
385 if (execfile == 0 || exec_bfd == 0)
386 error ("No executable file specified");
387
388 entry_pt = (int) bfd_get_start_address (exec_bfd);
389
390 #ifdef CREATE_INFERIOR_HOOK
391 CREATE_INFERIOR_HOOK (0); /* No process-ID */
392 #endif
393
394 /* The "process" (board) is already stopped awaiting our commands, and
395 the program is already downloaded. We just set its PC and go. */
396
397 clear_proceed_status ();
398
399 /* Tell wait_for_inferior that we've started a new process. */
400 init_wait_for_inferior ();
401
402 /* Set up the "saved terminal modes" of the inferior
403 based on what modes we are starting it with. */
404 target_terminal_init ();
405
406 /* Install inferior's terminal modes. */
407 target_terminal_inferior ();
408
409 /* insert_step_breakpoint (); FIXME, do we need this? */
410 proceed ((CORE_ADDR) entry_pt, -1, 0); /* Let 'er rip... */
411 }
412
413 /* Open a connection to a remote debugger. NAME is the filename used
414 for communication. */
415
416 static int baudrate = 9600;
417 static char dev_name[100];
418
419 static char *machine = "";
420 static char *user = "";
421 static char *passwd = "";
422 static char *dir = "";
423
424 /* Grab the next token and buy some space for it */
425
426 static char *
427 next (ptr)
428 char **ptr;
429 {
430 char *p = *ptr;
431 char *s;
432 char *r;
433 int l = 0;
434
435 while (*p && *p == ' ')
436 p++;
437 s = p;
438 while (*p && (*p != ' ' && *p != '\t'))
439 {
440 l++;
441 p++;
442 }
443 r = xmalloc (l + 1);
444 memcpy (r, s, l);
445 r[l] = 0;
446 *ptr = p;
447 return r;
448 }
449
450 static void
451 e7000_login_command (args, from_tty)
452 char *args;
453 int from_tty;
454 {
455 if (args)
456 {
457 machine = next (&args);
458 user = next (&args);
459 passwd = next (&args);
460 dir = next (&args);
461 if (from_tty)
462 {
463 printf_unfiltered ("Set info to %s %s %s %s\n", machine, user, passwd, dir);
464 }
465 }
466 else
467 {
468 error ("Syntax is ftplogin <machine> <user> <passwd> <directory>");
469 }
470 }
471
472 /* Start an ftp transfer from the E7000 to a host */
473
474 static void
475 e7000_ftp_command (args, from_tty)
476 char *args;
477 int from_tty;
478 {
479 /* FIXME: arbitrary limit on machine names and such. */
480 char buf[200];
481
482 int oldtimeout = timeout;
483 timeout = remote_timeout;
484
485 sprintf (buf, "ftp %s\r", machine);
486 puts_e7000debug (buf);
487 expect (" Username : ");
488 sprintf (buf, "%s\r", user);
489 puts_e7000debug (buf);
490 expect (" Password : ");
491 write_e7000 (passwd);
492 write_e7000 ("\r");
493 expect ("success\r");
494 expect ("FTP>");
495 sprintf (buf, "cd %s\r", dir);
496 puts_e7000debug (buf);
497 expect ("FTP>");
498 sprintf (buf, "ll 0;s:%s\r", args);
499 puts_e7000debug (buf);
500 expect ("FTP>");
501 puts_e7000debug ("bye\r");
502 expect (":");
503 timeout = oldtimeout;
504 }
505
506 static int
507 e7000_parse_device (args, dev_name, baudrate)
508 char *args;
509 char *dev_name;
510 int baudrate;
511 {
512 char junk[128];
513 int n = 0;
514 if (args && strcasecmp (args, "pc") == 0)
515 {
516 strcpy (dev_name, args);
517 using_pc = 1;
518 }
519 else
520 {
521 /* FIXME! temp hack to allow use with port master -
522 target tcp_remote <device> */
523 if (args && strncmp (args, "tcp", 10) == 0)
524 {
525 char com_type[128];
526 n = sscanf (args, " %s %s %d %s", com_type, dev_name, &baudrate, junk);
527 using_tcp_remote=1;
528 n--;
529 }
530 else if (args)
531 {
532 n = sscanf (args, " %s %d %s", dev_name, &baudrate, junk);
533 }
534
535 if (n != 1 && n != 2)
536 {
537 error ("Bad arguments. Usage:\ttarget e7000 <device> <speed>\n\
538 or \t\ttarget e7000 <host>[:<port>]\n\
539 or \t\ttarget e7000 tcp_remote <host>[:<port>]\n\
540 or \t\ttarget e7000 pc\n");
541 }
542
543 #if !defined(__GO32__) && !defined(_WIN32)
544 /* FIXME! test for ':' is ambiguous */
545 if (n == 1 && strchr (dev_name, ':') == 0)
546 {
547 /* Default to normal telnet port */
548 /* serial_open will use this to determine tcp communication */
549 strcat (dev_name, ":23");
550 }
551 #endif
552 if (!using_tcp_remote && strchr (dev_name, ':'))
553 using_tcp = 1;
554 }
555
556 return n;
557 }
558
559 /* Stub for catch_errors. */
560
561 static int
562 e7000_start_remote (dummy)
563 char *dummy;
564 {
565 int loop;
566 int sync;
567 int try;
568 int quit_trying;
569
570 immediate_quit = 1; /* Allow user to interrupt it */
571
572 /* Hello? Are you there? */
573 sync = 0;
574 loop = 0;
575 try = 0;
576 quit_trying = 20;
577 putchar_e7000 (CTRLC);
578 while (!sync && ++try <= quit_trying)
579 {
580 int c;
581
582 printf_unfiltered ("[waiting for e7000...]\n");
583
584 write_e7000 ("\r");
585 c = readchar (1);
586
587 /* FIXME! this didn't seem right-> while (c != SERIAL_TIMEOUT)
588 * we get stuck in this loop ...
589 * We may never timeout, and never sync up :-(
590 */
591 while (!sync && c != -1)
592 {
593 /* Dont echo cr's */
594 if (c != '\r')
595 {
596 putchar_unfiltered (c);
597 gdb_flush (gdb_stdout);
598 }
599 /* Shouldn't we either break here, or check for sync in inner loop? */
600 if (c == ':')
601 sync = 1;
602
603 if (loop++ == 20)
604 {
605 putchar_e7000 (CTRLC);
606 loop = 0;
607 }
608
609 QUIT ;
610
611 if (quit_flag)
612 {
613 putchar_e7000 (CTRLC);
614 /* Was-> quit_flag = 0; */
615 c = -1;
616 quit_trying = try+1; /* we don't want to try anymore */
617 }
618 else
619 {
620 c = readchar (1);
621 }
622 }
623 }
624
625 if (!sync)
626 {
627 fprintf_unfiltered (gdb_stderr, "Giving up after %d tries...\n",try);
628 error ("Unable to syncronize with target.\n");
629 }
630
631 puts_e7000debug ("\r");
632 expect_prompt ();
633 puts_e7000debug ("b -\r"); /* Clear breakpoints */
634 expect_prompt ();
635
636 immediate_quit = 0;
637
638 /* This is really the job of start_remote however, that makes an assumption
639 that the target is about to print out a status message of some sort. That
640 doesn't happen here. */
641
642 flush_cached_frames ();
643 registers_changed ();
644 stop_pc = read_pc ();
645 set_current_frame (create_new_frame (read_fp (), stop_pc));
646 select_frame (get_current_frame (), 0);
647 print_stack_frame (selected_frame, -1, 1);
648
649 return 1;
650 }
651
652 static void
653 e7000_open (args, from_tty)
654 char *args;
655 int from_tty;
656 {
657 int n;
658
659 target_preopen (from_tty);
660
661 n = e7000_parse_device (args, dev_name, baudrate);
662
663 push_target (&e7000_ops);
664
665 e7000_desc = SERIAL_OPEN (dev_name);
666
667 if (!e7000_desc)
668 perror_with_name (dev_name);
669
670 SERIAL_SETBAUDRATE (e7000_desc, baudrate);
671 SERIAL_RAW (e7000_desc);
672
673 #ifdef GDB_TARGET_IS_H8300
674 h8300hmode = 1;
675 #endif
676
677 /* Start the remote connection; if error (0), discard this target.
678 In particular, if the user quits, be sure to discard it
679 (we'd be in an inconsistent state otherwise). */
680 if (!catch_errors (e7000_start_remote, (char *)0,
681 "Couldn't establish connection to remote target\n", RETURN_MASK_ALL))
682 if (from_tty)
683 printf_filtered ("Remote target %s connected to %s\n", target_shortname,
684 dev_name);
685 }
686
687 /* Close out all files and local state before this target loses control. */
688
689 static void
690 e7000_close (quitting)
691 int quitting;
692 {
693 if (e7000_desc)
694 {
695 SERIAL_CLOSE (e7000_desc);
696 e7000_desc = 0;
697 }
698 }
699
700 /* Terminate the open connection to the remote debugger. Use this
701 when you want to detach and do something else with your gdb. */
702
703 static void
704 e7000_detach (from_tty)
705 int from_tty;
706 {
707 pop_target (); /* calls e7000_close to do the real work */
708 if (from_tty)
709 printf_unfiltered ("Ending remote %s debugging\n", target_shortname);
710 }
711
712 /* Tell the remote machine to resume. */
713
714 static void
715 e7000_resume (pid, step, sig)
716 int pid, step, sig;
717 {
718 if (step)
719 puts_e7000debug ("S\r");
720 else
721 puts_e7000debug ("G\r");
722 }
723
724 /* Read the remote registers into the block REGS.
725
726 For the H8/300 a register dump looks like:
727
728 PC=00021A CCR=80:I*******
729 ER0 - ER3 0000000A 0000002E 0000002E 00000000
730 ER4 - ER7 00000000 00000000 00000000 00FFEFF6
731 000218 MOV.B R1L,R2L
732 STEP NORMAL END or
733 BREAK POINT
734 */
735
736 #ifdef GDB_TARGET_IS_H8300
737
738 char *want_h8300h = "PC=%p CCR=%c\n\
739 ER0 - ER3 %0 %1 %2 %3\n\
740 ER4 - ER7 %4 %5 %6 %7\n";
741
742 char *want_nopc_h8300h = "%p CCR=%c\n\
743 ER0 - ER3 %0 %1 %2 %3\n\
744 ER4 - ER7 %4 %5 %6 %7";
745
746 char *want_h8300s = "PC=%p CCR=%c\n\
747 MACH=\n\
748 ER0 - ER3 %0 %1 %2 %3\n\
749 ER4 - ER7 %4 %5 %6 %7\n";
750
751 char *want_nopc_h8300s = "%p CCR=%c EXR=%9\n\
752 ER0 - ER3 %0 %1 %2 %3\n\
753 ER4 - ER7 %4 %5 %6 %7";
754
755 #endif
756
757 #ifdef GDB_TARGET_IS_SH
758
759 char *want = "PC=%16 SR=%22\n\
760 PR=%17 GBR=%18 VBR=%19\n\
761 MACH=%20 MACL=%21\n\
762 R0-7 %0 %1 %2 %3 %4 %5 %6 %7\n\
763 R8-15 %8 %9 %10 %11 %12 %13 %14 %15\n";
764
765 char *want_nopc = "%16 SR=%22\n\
766 PR=%17 GBR=%18 VBR=%19\n\
767 MACH=%20 MACL=%21\n\
768 R0-7 %0 %1 %2 %3 %4 %5 %6 %7\n\
769 R8-15 %8 %9 %10 %11 %12 %13 %14 %15";
770
771 char *want_sh3 = "PC=%16 SR=%22\n\
772 PR=%17 GBR=%18 VBR=%19\n\
773 MACH=%20 MACL=%21 SSR=%23 SPC=%24\n\
774 R0-7 %0 %1 %2 %3 %4 %5 %6 %7\n\
775 R8-15 %8 %9 %10 %11 %12 %13 %14 %15\n\
776 R0_BANK0-R3_BANK0 %25 %26 %27 %28\n\
777 R4_BANK0-R7_BANK0 %29 %30 %31 %32\n\
778 R0_BANK1-R3_BANK1 %33 %34 %35 %36\n\
779 R4_BANK1-R7_BANK1 %37 %38 %39 %40";
780
781 char *want_sh3_nopc = "%16 SR=%22\n\
782 PR=%17 GBR=%18 VBR=%19\n\
783 MACH=%20 MACL=%21 SSR=%22 SPC=%23\n\
784 R0-7 %0 %1 %2 %3 %4 %5 %6 %7\n\
785 R8-15 %8 %9 %10 %11 %12 %13 %14 %15\n\
786 R0_BANK0-R3_BANK0 %25 %26 %27 %28\n\
787 R4_BANK0-R7_BANK0 %29 %30 %31 %32\n\
788 R0_BANK1-R3_BANK1 %33 %34 %35 %36\n\
789 R4_BANK1-R7_BANK1 %37 %38 %39 %40";
790
791 #endif
792
793 static int
794 gch ()
795 {
796 return readchar (timeout);
797 }
798
799 static unsigned int
800 gbyte ()
801 {
802 int high = convert_hex_digit (gch ());
803 int low = convert_hex_digit (gch ());
804
805 return (high << 4) + low;
806 }
807
808 void
809 fetch_regs_from_dump (nextchar, want)
810 int (*nextchar)();
811 char *want;
812 {
813 int regno;
814 char buf[MAX_REGISTER_RAW_SIZE];
815
816 int thischar = nextchar ();
817
818 while (*want)
819 {
820 switch (*want)
821 {
822 case '\n':
823 /* Skip to end of line and then eat all new line type stuff */
824 while (thischar != '\n' && thischar != '\r')
825 thischar = nextchar ();
826 while (thischar == '\n' || thischar == '\r')
827 thischar = nextchar ();
828 want++;
829 break;
830
831 case ' ':
832 while (thischar == ' '
833 || thischar == '\t'
834 || thischar == '\r'
835 || thischar == '\n')
836 thischar = nextchar ();
837 want++;
838 break;
839
840 default:
841 if (*want == thischar)
842 {
843 want++;
844 if (*want)
845 thischar = nextchar ();
846
847 }
848 else if (thischar == ' ' || thischar == '\n' || thischar == '\r')
849 {
850 thischar = nextchar ();
851 }
852 else {
853 error ("out of sync in fetch registers wanted <%s>, got <%c 0x%x>",
854 want, thischar, thischar);
855 }
856
857 break;
858 case '%':
859 /* Got a register command */
860 want++;
861 switch (*want)
862 {
863 #ifdef PC_REGNUM
864 case 'p':
865 regno = PC_REGNUM;
866 want++;
867 break;
868 #endif
869 #ifdef CCR_REGNUM
870 case 'c':
871 regno = CCR_REGNUM;
872 want++;
873 break;
874 #endif
875 #ifdef SP_REGNUM
876 case 's':
877 regno = SP_REGNUM;
878 want++;
879 break;
880 #endif
881 #ifdef FP_REGNUM
882 case 'f':
883 regno = FP_REGNUM;
884 want++;
885 break;
886 #endif
887
888 default:
889 if (isdigit (want[0]))
890 {
891 if (isdigit (want[1]))
892 {
893 regno = (want[0] - '0') * 10 + want[1] - '0';
894 want += 2;
895 }
896 else
897 {
898 regno = want[0] - '0';
899 want++;
900 }
901 }
902
903 else
904 abort ();
905 }
906 store_signed_integer (buf,
907 REGISTER_RAW_SIZE(regno),
908 (LONGEST) get_hex (&thischar, nextchar));
909 supply_register (regno, buf);
910 break;
911 }
912 }
913 }
914
915 static void
916 e7000_fetch_registers ()
917 {
918 int regno;
919 char *wanted;
920
921 puts_e7000debug ("R\r");
922
923 #ifdef GDB_TARGET_IS_SH
924 wanted = want;
925 if (TARGET_ARCHITECTURE->arch == bfd_arch_sh)
926 switch (TARGET_ARCHITECTURE->mach)
927 {
928 case bfd_mach_sh3:
929 case bfd_mach_sh3e:
930 wanted = want_sh3;
931 }
932 #else
933 if (h8300smode)
934 wanted = want_h8300s;
935 else
936 wanted = want_h8300h;
937 #endif
938 fetch_regs_from_dump (gch, wanted);
939
940 /* And supply the extra ones the simulator uses */
941 for (regno = NUM_REALREGS; regno < NUM_REGS; regno++)
942 {
943 int buf = 0;
944
945 supply_register (regno, (char *) (&buf));
946 }
947 }
948
949 /* Fetch register REGNO, or all registers if REGNO is -1. Returns
950 errno value. */
951
952 static void
953 e7000_fetch_register (regno)
954 int regno;
955 {
956 e7000_fetch_registers ();
957 }
958
959 /* Store the remote registers from the contents of the block REGS. */
960
961 static void
962 e7000_store_registers ()
963 {
964 int regno;
965
966 for (regno = 0; regno < NUM_REALREGS; regno++)
967 e7000_store_register (regno);
968
969 registers_changed ();
970 }
971
972 /* Store register REGNO, or all if REGNO == 0. Return errno value. */
973
974 static void
975 e7000_store_register (regno)
976 int regno;
977 {
978 char buf[200];
979
980 if (regno == -1)
981 {
982 e7000_store_registers ();
983 return;
984 }
985
986 #ifdef GDB_TARGET_IS_H8300
987 if (regno <= 7)
988 {
989 sprintf (buf, ".ER%d %x\r", regno, read_register (regno));
990 puts_e7000debug (buf);
991 }
992 else if (regno == PC_REGNUM)
993 {
994 sprintf (buf, ".PC %x\r", read_register (regno));
995 puts_e7000debug (buf);
996 }
997 else if (regno == CCR_REGNUM)
998 {
999 sprintf (buf, ".CCR %x\r", read_register (regno));
1000 puts_e7000debug (buf);
1001 }
1002 #endif /* GDB_TARGET_IS_H8300 */
1003
1004 #ifdef GDB_TARGET_IS_SH
1005 switch (regno)
1006 {
1007 default:
1008 sprintf (buf, ".R%d %x\r", regno, read_register (regno));
1009 puts_e7000debug (buf);
1010 break;
1011
1012 case PC_REGNUM:
1013 sprintf (buf, ".PC %x\r", read_register (regno));
1014 puts_e7000debug (buf);
1015 break;
1016
1017 case SR_REGNUM:
1018 sprintf (buf, ".SR %x\r", read_register (regno));
1019 puts_e7000debug (buf);
1020 break;
1021
1022 case PR_REGNUM:
1023 sprintf (buf, ".PR %x\r", read_register (regno));
1024 puts_e7000debug (buf);
1025 break;
1026
1027 case GBR_REGNUM:
1028 sprintf (buf, ".GBR %x\r", read_register (regno));
1029 puts_e7000debug (buf);
1030 break;
1031
1032 case VBR_REGNUM:
1033 sprintf (buf, ".VBR %x\r", read_register (regno));
1034 puts_e7000debug (buf);
1035 break;
1036
1037 case MACH_REGNUM:
1038 sprintf (buf, ".MACH %x\r", read_register (regno));
1039 puts_e7000debug (buf);
1040 break;
1041
1042 case MACL_REGNUM:
1043 sprintf (buf, ".MACL %x\r", read_register (regno));
1044 puts_e7000debug (buf);
1045 break;
1046 }
1047
1048 #endif /* GDB_TARGET_IS_SH */
1049
1050 expect_prompt ();
1051 }
1052
1053 /* Get ready to modify the registers array. On machines which store
1054 individual registers, this doesn't need to do anything. On machines
1055 which store all the registers in one fell swoop, this makes sure
1056 that registers contains all the registers from the program being
1057 debugged. */
1058
1059 static void
1060 e7000_prepare_to_store ()
1061 {
1062 /* Do nothing, since we can store individual regs */
1063 }
1064
1065 static void
1066 e7000_files_info ()
1067 {
1068 printf_unfiltered ("\tAttached to %s at %d baud.\n", dev_name, baudrate);
1069 }
1070
1071 static int
1072 stickbyte (where, what)
1073 char *where;
1074 unsigned int what;
1075 {
1076 static CONST char digs[] = "0123456789ABCDEF";
1077
1078 where[0] = digs[(what >> 4) & 0xf];
1079 where[1] = digs[(what & 0xf) & 0xf];
1080
1081 return what;
1082 }
1083
1084 /* Write a small ammount of memory. */
1085
1086 static int
1087 write_small (memaddr, myaddr, len)
1088 CORE_ADDR memaddr;
1089 unsigned char *myaddr;
1090 int len;
1091 {
1092 int i;
1093 char buf[200];
1094
1095 for (i = 0; i < len; i++)
1096 {
1097 if (((memaddr + i) & 3) == 0 && (i + 3 < len))
1098 {
1099 /* Can be done with a long word */
1100 sprintf (buf, "m %x %x%02x%02x%02x;l\r",
1101 memaddr + i,
1102 myaddr[i], myaddr[i + 1], myaddr[i + 2], myaddr[i + 3]);
1103 puts_e7000debug (buf);
1104 i += 3;
1105 }
1106 else
1107 {
1108 sprintf (buf, "m %x %x\r", memaddr + i, myaddr[i]);
1109 puts_e7000debug (buf);
1110 }
1111 }
1112
1113 expect_prompt ();
1114
1115 return len;
1116 }
1117
1118 /* Write a large ammount of memory, this only works with the serial
1119 mode enabled. Command is sent as
1120
1121 il ;s:s\r ->
1122 <- il ;s:s\r
1123 <- ENQ
1124 ACK ->
1125 <- LO s\r
1126 Srecords...
1127 ^Z ->
1128 <- ENQ
1129 ACK ->
1130 <- :
1131 */
1132
1133 static int
1134 write_large (memaddr, myaddr, len)
1135 CORE_ADDR memaddr;
1136 unsigned char *myaddr;
1137 int len;
1138 {
1139 int i;
1140 #define maxstride 128
1141 int stride;
1142
1143 puts_e7000debug ("IL ;S:FK\r");
1144 expect (ENQSTRING);
1145 putchar_e7000 (ACK);
1146 expect ("LO FK\r");
1147
1148 for (i = 0; i < len; i += stride)
1149 {
1150 char compose[maxstride * 2 + 50];
1151 int address = i + memaddr;
1152 int j;
1153 int check_sum;
1154 int where = 0;
1155 int alen;
1156
1157 stride = len - i;
1158 if (stride > maxstride)
1159 stride = maxstride;
1160
1161 compose[where++] = 'S';
1162 check_sum = 0;
1163 if (address >= 0xffffff)
1164 alen = 4;
1165 else if (address >= 0xffff)
1166 alen = 3;
1167 else
1168 alen = 2;
1169 /* Insert type. */
1170 compose[where++] = alen - 1 + '0';
1171 /* Insert length. */
1172 check_sum += stickbyte (compose + where, alen + stride + 1);
1173 where += 2;
1174 while (alen > 0)
1175 {
1176 alen--;
1177 check_sum += stickbyte (compose + where, address >> (8 * (alen)));
1178 where += 2;
1179 }
1180
1181 for (j = 0; j < stride; j++)
1182 {
1183 check_sum += stickbyte (compose + where, myaddr[i + j]);
1184 where += 2;
1185 }
1186 stickbyte (compose + where, ~check_sum);
1187 where += 2;
1188 compose[where++] = '\r';
1189 compose[where++] = '\n';
1190 compose[where++] = 0;
1191
1192 SERIAL_WRITE (e7000_desc, compose, where);
1193 j = readchar (0);
1194 if (j == -1)
1195 {
1196 /* This is ok - nothing there */
1197 }
1198 else if (j == ENQ)
1199 {
1200 /* Hmm, it's trying to tell us something */
1201 expect (":");
1202 error ("Error writing memory");
1203 }
1204 else
1205 {
1206 printf_unfiltered ("@%d}@", j);
1207 while ((j = readchar (0)) > 0)
1208 {
1209 printf_unfiltered ("@{%d}@",j);
1210 }
1211 }
1212 }
1213
1214 /* Send the trailer record */
1215 write_e7000 ("S70500000000FA\r");
1216 putchar_e7000 (CTRLZ);
1217 expect (ENQSTRING);
1218 putchar_e7000 (ACK);
1219 expect (":");
1220
1221 return len;
1222 }
1223
1224 /* Copy LEN bytes of data from debugger memory at MYADDR to inferior's
1225 memory at MEMADDR. Returns length moved.
1226
1227 Can't use the Srecord load over ethernet, so don't use fast method
1228 then. */
1229
1230 static int
1231 e7000_write_inferior_memory (memaddr, myaddr, len)
1232 CORE_ADDR memaddr;
1233 unsigned char *myaddr;
1234 int len;
1235 {
1236 if (len < 16 || using_tcp || using_pc)
1237 return write_small (memaddr, myaddr, len);
1238 else
1239 return write_large (memaddr, myaddr, len);
1240 }
1241
1242 /* Read LEN bytes from inferior memory at MEMADDR. Put the result
1243 at debugger address MYADDR. Returns length moved.
1244
1245 Small transactions we send
1246 m <addr>;l
1247 and receive
1248 00000000 12345678 ?
1249 */
1250
1251 static int
1252 e7000_read_inferior_memory (memaddr, myaddr, len)
1253 CORE_ADDR memaddr;
1254 unsigned char *myaddr;
1255 int len;
1256 {
1257 int count;
1258 int c;
1259 int i;
1260 char buf[200];
1261 /* Starting address of this pass. */
1262
1263 /* printf("READ INF %x %x %d\n", memaddr, myaddr, len);*/
1264 if (((memaddr - 1) + len) < memaddr)
1265 {
1266 errno = EIO;
1267 return 0;
1268 }
1269
1270 sprintf (buf, "m %x;l\r", memaddr);
1271 puts_e7000debug (buf);
1272
1273 for (count = 0; count < len; count += 4)
1274 {
1275 /* Suck away the address */
1276 c = gch ();
1277 while (c != ' ')
1278 c = gch ();
1279 c = gch ();
1280 if (c == '*')
1281 { /* Some kind of error */
1282 puts_e7000debug (".\r"); /* Some errors leave us in memory input mode */
1283 expect_full_prompt();
1284 return -1;
1285 }
1286 while (c != ' ')
1287 c = gch ();
1288
1289 /* Now read in the data */
1290 for (i = 0; i < 4; i++)
1291 {
1292 int b = gbyte();
1293 if (count + i < len) {
1294 myaddr[count + i] = b;
1295 }
1296 }
1297
1298 /* Skip the trailing ? and send a . to end and a cr for more */
1299 gch ();
1300 gch ();
1301 if (count + 4 >= len)
1302 puts_e7000debug(".\r");
1303 else
1304 puts_e7000debug("\r");
1305
1306 }
1307 expect_prompt();
1308 return len;
1309 }
1310
1311
1312
1313 /*
1314 For large transfers we used to send
1315
1316
1317 d <addr> <endaddr>\r
1318
1319 and receive
1320 <ADDRESS> < D A T A > < ASCII CODE >
1321 00000000 5F FD FD FF DF 7F DF FF 01 00 01 00 02 00 08 04 "_..............."
1322 00000010 FF D7 FF 7F D7 F1 7F FF 00 05 00 00 08 00 40 00 "..............@."
1323 00000020 7F FD FF F7 7F FF FF F7 00 00 00 00 00 00 00 00 "................"
1324
1325 A cost in chars for each transaction of 80 + 5*n-bytes.
1326
1327 Large transactions could be done with the srecord load code, but
1328 there is a pause for a second before dumping starts, which slows the
1329 average rate down!
1330 */
1331
1332 static int
1333 e7000_read_inferior_memory_large (memaddr, myaddr, len)
1334 CORE_ADDR memaddr;
1335 unsigned char *myaddr;
1336 int len;
1337 {
1338 int count;
1339 int c;
1340 char buf[200];
1341
1342 /* Starting address of this pass. */
1343
1344 if (((memaddr - 1) + len) < memaddr)
1345 {
1346 errno = EIO;
1347 return 0;
1348 }
1349
1350 sprintf (buf, "d %x %x\r", memaddr, memaddr + len - 1);
1351 puts_e7000debug (buf);
1352
1353 count = 0;
1354 c = gch ();
1355
1356 /* skip down to the first ">" */
1357 while( c != '>' )
1358 c = gch ();
1359 /* now skip to the end of that line */
1360 while( c != '\r' )
1361 c = gch ();
1362 c = gch ();
1363
1364 while (count < len)
1365 {
1366 /* get rid of any white space before the address */
1367 while (c <= ' ')
1368 c = gch ();
1369
1370 /* Skip the address */
1371 get_hex (&c);
1372
1373 /* read in the bytes on the line */
1374 while (c != '"' && count < len)
1375 {
1376 if (c == ' ')
1377 c = gch ();
1378 else
1379 {
1380 myaddr[count++] = get_hex (&c);
1381 }
1382 }
1383 /* throw out the rest of the line */
1384 while( c != '\r' )
1385 c = gch ();
1386 }
1387
1388 /* wait for the ":" prompt */
1389 while (c != ':')
1390 c = gch ();
1391
1392 return len;
1393 }
1394
1395 #if 0
1396
1397 static int
1398 fast_but_for_the_pause_e7000_read_inferior_memory (memaddr, myaddr, len)
1399 CORE_ADDR memaddr;
1400 char *myaddr;
1401 int len;
1402 {
1403 int loop;
1404 int c;
1405 char buf[200];
1406
1407 if (((memaddr - 1) + len) < memaddr)
1408 {
1409 errno = EIO;
1410 return 0;
1411 }
1412
1413 sprintf (buf, "is %x@%x:s\r", memaddr, len);
1414 puts_e7000debug (buf);
1415 gch ();
1416 c = gch ();
1417 if (c != ENQ)
1418 {
1419 /* Got an error */
1420 error ("Memory read error");
1421 }
1422 putchar_e7000 (ACK);
1423 expect ("SV s");
1424 loop = 1;
1425 while (loop)
1426 {
1427 int type;
1428 int length;
1429 int addr;
1430 int i;
1431
1432 c = gch ();
1433 switch (c)
1434 {
1435 case ENQ: /* ENQ, at the end */
1436 loop = 0;
1437 break;
1438 case 'S':
1439 /* Start of an Srecord */
1440 type = gch ();
1441 length = gbyte ();
1442 switch (type)
1443 {
1444 case '7': /* Termination record, ignore */
1445 case '0':
1446 case '8':
1447 case '9':
1448 /* Header record - ignore it */
1449 while (length--)
1450 {
1451 gbyte ();
1452 }
1453 break;
1454 case '1':
1455 case '2':
1456 case '3':
1457 {
1458 int alen;
1459
1460 alen = type - '0' + 1;
1461 addr = 0;
1462 while (alen--)
1463 {
1464 addr = (addr << 8) + gbyte ();
1465 length--;
1466 }
1467
1468 for (i = 0; i < length - 1; i++)
1469 myaddr[i + addr - memaddr] = gbyte ();
1470
1471 gbyte (); /* Ignore checksum */
1472 }
1473 }
1474 }
1475 }
1476
1477 putchar_e7000 (ACK);
1478 expect ("TOP ADDRESS =");
1479 expect ("END ADDRESS =");
1480 expect (":");
1481
1482 return len;
1483 }
1484
1485 #endif
1486
1487 static int
1488 e7000_xfer_inferior_memory (memaddr, myaddr, len, write, target)
1489 CORE_ADDR memaddr;
1490 unsigned char *myaddr;
1491 int len;
1492 int write;
1493 struct target_ops *target; /* ignored */
1494 {
1495 if (write)
1496 return e7000_write_inferior_memory( memaddr, myaddr, len);
1497 else
1498 if( len < 16 )
1499 return e7000_read_inferior_memory( memaddr, myaddr, len);
1500 else
1501 return e7000_read_inferior_memory_large( memaddr, myaddr, len);
1502 }
1503
1504 static void
1505 e7000_kill (args, from_tty)
1506 char *args;
1507 int from_tty;
1508 {
1509 }
1510
1511 static void
1512 e7000_load (args, from_tty)
1513 char *args;
1514 int from_tty;
1515 {
1516 struct cleanup *old_chain;
1517 asection *section;
1518 bfd *pbfd;
1519 bfd_vma entry;
1520 #define WRITESIZE 0x1000
1521 char buf[2 + 4 + 4 + WRITESIZE]; /* `DT' + <addr> + <len> + <data> */
1522 char *filename;
1523 int quiet;
1524 int nostart;
1525 time_t start_time, end_time; /* Start and end times of download */
1526 unsigned long data_count; /* Number of bytes transferred to memory */
1527 int oldtimeout = timeout;
1528
1529 timeout = remote_timeout;
1530
1531
1532 /* FIXME! change test to test for type of download */
1533 if (!using_tcp)
1534 {
1535 generic_load (args, from_tty);
1536 return;
1537 }
1538
1539 /* for direct tcp connections, we can do a fast binary download */
1540 buf[0] = 'D';
1541 buf[1] = 'T';
1542 quiet = 0;
1543 nostart = 0;
1544 filename = NULL;
1545
1546 while (*args != '\000')
1547 {
1548 char *arg;
1549
1550 while (isspace (*args)) args++;
1551
1552 arg = args;
1553
1554 while ((*args != '\000') && !isspace (*args)) args++;
1555
1556 if (*args != '\000')
1557 *args++ = '\000';
1558
1559 if (*arg != '-')
1560 filename = arg;
1561 else if (strncmp (arg, "-quiet", strlen (arg)) == 0)
1562 quiet = 1;
1563 else if (strncmp (arg, "-nostart", strlen (arg)) == 0)
1564 nostart = 1;
1565 else
1566 error ("unknown option `%s'", arg);
1567 }
1568
1569 if (!filename)
1570 filename = get_exec_file (1);
1571
1572 pbfd = bfd_openr (filename, gnutarget);
1573 if (pbfd == NULL)
1574 {
1575 perror_with_name (filename);
1576 return;
1577 }
1578 old_chain = make_cleanup ((make_cleanup_func) bfd_close, pbfd);
1579
1580 if (!bfd_check_format (pbfd, bfd_object))
1581 error ("\"%s\" is not an object file: %s", filename,
1582 bfd_errmsg (bfd_get_error ()));
1583
1584 start_time = time (NULL);
1585 data_count = 0;
1586
1587 puts_e7000debug ("mw\r");
1588
1589 expect ("\nOK");
1590
1591 for (section = pbfd->sections; section; section = section->next)
1592 {
1593 if (bfd_get_section_flags (pbfd, section) & SEC_LOAD)
1594 {
1595 bfd_vma section_address;
1596 bfd_size_type section_size;
1597 file_ptr fptr;
1598
1599 section_address = bfd_get_section_vma (pbfd, section);
1600 section_size = bfd_get_section_size_before_reloc (section);
1601
1602 if (!quiet)
1603 printf_filtered ("[Loading section %s at 0x%x (%d bytes)]\n",
1604 bfd_get_section_name (pbfd, section),
1605 section_address,
1606 section_size);
1607
1608 fptr = 0;
1609
1610 data_count += section_size;
1611
1612 while (section_size > 0)
1613 {
1614 int count;
1615 static char inds[] = "|/-\\";
1616 static int k = 0;
1617
1618 QUIT;
1619
1620 count = min (section_size, WRITESIZE);
1621
1622 buf[2] = section_address >> 24;
1623 buf[3] = section_address >> 16;
1624 buf[4] = section_address >> 8;
1625 buf[5] = section_address;
1626
1627 buf[6] = count >> 24;
1628 buf[7] = count >> 16;
1629 buf[8] = count >> 8;
1630 buf[9] = count;
1631
1632 bfd_get_section_contents (pbfd, section, buf + 10, fptr, count);
1633
1634 if (SERIAL_WRITE (e7000_desc, buf, count + 10))
1635 fprintf_unfiltered (gdb_stderr,
1636 "e7000_load: SERIAL_WRITE failed: %s\n",
1637 safe_strerror(errno));
1638
1639 expect ("OK");
1640
1641 if (!quiet)
1642 {
1643 printf_unfiltered ("\r%c", inds[k++ % 4]);
1644 gdb_flush (gdb_stdout);
1645 }
1646
1647 section_address += count;
1648 fptr += count;
1649 section_size -= count;
1650 }
1651 }
1652 }
1653
1654 write_e7000 ("ED");
1655
1656 expect_prompt ();
1657
1658 end_time = time (NULL);
1659
1660 /* Finally, make the PC point at the start address */
1661
1662 if (exec_bfd)
1663 write_pc (bfd_get_start_address (exec_bfd));
1664
1665 inferior_pid = 0; /* No process now */
1666
1667 /* This is necessary because many things were based on the PC at the time that
1668 we attached to the monitor, which is no longer valid now that we have loaded
1669 new code (and just changed the PC). Another way to do this might be to call
1670 normal_stop, except that the stack may not be valid, and things would get
1671 horribly confused... */
1672
1673 clear_symtab_users ();
1674
1675 if (!nostart)
1676 {
1677 entry = bfd_get_start_address (pbfd);
1678
1679 if (!quiet)
1680 printf_unfiltered ("[Starting %s at 0x%x]\n", filename, entry);
1681
1682 /* start_routine (entry);*/
1683 }
1684
1685 report_transfer_performance (data_count, start_time, end_time);
1686
1687 do_cleanups (old_chain);
1688 timeout = oldtimeout;
1689 }
1690
1691 /* Clean up when a program exits.
1692
1693 The program actually lives on in the remote processor's RAM, and may be
1694 run again without a download. Don't leave it full of breakpoint
1695 instructions. */
1696
1697 static void
1698 e7000_mourn_inferior ()
1699 {
1700 remove_breakpoints ();
1701 unpush_target (&e7000_ops);
1702 generic_mourn_inferior (); /* Do all the proper things now */
1703 }
1704
1705 #define MAX_BREAKPOINTS 200
1706 #ifdef HARD_BREAKPOINTS
1707 #define MAX_E7000DEBUG_BREAKPOINTS (BC_BREAKPOINTS ? 5 : MAX_BREAKPOINTS)
1708 #else
1709 #define MAX_E7000DEBUG_BREAKPOINTS MAX_BREAKPOINTS
1710 #endif
1711
1712 /* Since we can change to soft breakpoints dynamically, we must define
1713 more than enough. Was breakaddr[MAX_E7000DEBUG_BREAKPOINTS]. */
1714 static CORE_ADDR breakaddr[MAX_BREAKPOINTS] = {0};
1715
1716 static int
1717 e7000_insert_breakpoint (addr, shadow)
1718 CORE_ADDR addr;
1719 unsigned char *shadow;
1720 {
1721 int i;
1722 char buf[200];
1723 #if 0
1724 static char nop[2] = NOP;
1725 #endif
1726
1727 for (i = 0; i <= MAX_E7000DEBUG_BREAKPOINTS; i++)
1728 if (breakaddr[i] == 0)
1729 {
1730 breakaddr[i] = addr;
1731 /* Save old contents, and insert a nop in the space */
1732 #ifdef HARD_BREAKPOINTS
1733 if (BC_BREAKPOINTS)
1734 {
1735 sprintf (buf, "BC%d A=%x\r", i+1, addr);
1736 puts_e7000debug (buf);
1737 }
1738 else
1739 {
1740 sprintf (buf, "B %x\r", addr);
1741 puts_e7000debug (buf);
1742 }
1743 #else
1744 #if 0
1745 e7000_read_inferior_memory (addr, shadow, 2);
1746 e7000_write_inferior_memory (addr, nop, 2);
1747 #endif
1748
1749 sprintf (buf, "B %x\r", addr);
1750 puts_e7000debug (buf);
1751 #endif
1752 expect_prompt ();
1753 return 0;
1754 }
1755
1756 error ("Too many breakpoints ( > %d) for the E7000\n",
1757 MAX_E7000DEBUG_BREAKPOINTS);
1758 return 1;
1759 }
1760
1761 static int
1762 e7000_remove_breakpoint (addr, shadow)
1763 CORE_ADDR addr;
1764 unsigned char *shadow;
1765 {
1766 int i;
1767 char buf[200];
1768
1769 for (i = 0; i < MAX_E7000DEBUG_BREAKPOINTS; i++)
1770 if (breakaddr[i] == addr)
1771 {
1772 breakaddr[i] = 0;
1773 #ifdef HARD_BREAKPOINTS
1774 if (BC_BREAKPOINTS)
1775 {
1776 sprintf (buf, "BC%d - \r", i+1);
1777 puts_e7000debug (buf);
1778 }
1779 else
1780 {
1781 sprintf (buf, "B - %x\r", addr);
1782 puts_e7000debug (buf);
1783 }
1784 expect_prompt ();
1785 #else
1786 sprintf (buf, "B - %x\r", addr);
1787 puts_e7000debug (buf);
1788 expect_prompt ();
1789
1790 #if 0
1791 /* Replace the insn under the break */
1792 e7000_write_inferior_memory (addr, shadow, 2);
1793 #endif
1794 #endif
1795
1796 return 0;
1797 }
1798
1799 warning ("Can't find breakpoint associated with 0x%x\n", addr);
1800 return 1;
1801 }
1802
1803 /* Put a command string, in args, out to STDBUG. Output from STDBUG
1804 is placed on the users terminal until the prompt is seen. */
1805
1806 static void
1807 e7000_command (args, fromtty)
1808 char *args;
1809 int fromtty;
1810 {
1811 /* FIXME: arbitrary limit on length of args. */
1812 char buf[200];
1813
1814 echo = 0;
1815
1816 if (!e7000_desc)
1817 error ("e7000 target not open.");
1818 if (!args)
1819 {
1820 puts_e7000debug ("\r");
1821 }
1822 else
1823 {
1824 sprintf (buf, "%s\r", args);
1825 puts_e7000debug (buf);
1826 }
1827
1828 echo++;
1829 ctrl_c = 2;
1830 expect_full_prompt ();
1831 echo--;
1832 ctrl_c = 0;
1833 printf_unfiltered ("\n");
1834
1835 /* Who knows what the command did... */
1836 registers_changed ();
1837 }
1838
1839
1840 static void
1841 e7000_drain_command (args, fromtty)
1842 char *args;
1843 int fromtty;
1844
1845 {
1846 int c;
1847
1848 puts_e7000debug("end\r");
1849 putchar_e7000 (CTRLC);
1850
1851 while ((c = readchar (1) != -1))
1852 {
1853 if (quit_flag)
1854 {
1855 putchar_e7000(CTRLC);
1856 quit_flag = 0;
1857 }
1858 if (c > ' ' && c < 127)
1859 printf_unfiltered ("%c", c & 0xff);
1860 else
1861 printf_unfiltered ("<%x>", c & 0xff);
1862 }
1863 }
1864
1865 #define NITEMS 7
1866
1867 static int
1868 why_stop ()
1869 {
1870 static char *strings[NITEMS] = {
1871 "STEP NORMAL",
1872 "BREAK POINT",
1873 "BREAK KEY",
1874 "BREAK CONDI",
1875 "CYCLE ACCESS",
1876 "ILLEGAL INSTRUCTION",
1877 "WRITE PROTECT",
1878 };
1879 char *p[NITEMS];
1880 int c;
1881 int i;
1882
1883 for (i = 0; i < NITEMS; ++i)
1884 p[i] = strings[i];
1885
1886 c = gch ();
1887 while (1)
1888 {
1889 for (i = 0; i < NITEMS; i++)
1890 {
1891 if (c == *(p[i]))
1892 {
1893 p[i]++;
1894 if (*(p[i]) == 0)
1895 {
1896 /* found one of the choices */
1897 return i;
1898 }
1899 }
1900 else
1901 p[i] = strings[i];
1902 }
1903
1904 c = gch ();
1905 }
1906 }
1907
1908 /* Suck characters, if a string match, then return the strings index
1909 otherwise echo them. */
1910
1911 int
1912 expect_n (strings)
1913 char **strings;
1914 {
1915 char *(ptr[10]);
1916 int n;
1917 int c;
1918 char saveaway[100];
1919 char *buffer = saveaway;
1920 /* Count number of expect strings */
1921
1922 for (n = 0; strings[n]; n++)
1923 {
1924 ptr[n] = strings[n];
1925 }
1926
1927 while (1)
1928 {
1929 int i;
1930 int gotone = 0;
1931
1932 c = readchar (1);
1933 if (c == -1)
1934 {
1935 printf_unfiltered ("[waiting for e7000...]\n");
1936 }
1937 #ifdef __GO32__
1938 if (kbhit ())
1939 {
1940 int k = getkey();
1941
1942 if (k == 1)
1943 quit_flag = 1;
1944 }
1945 #endif
1946 if (quit_flag)
1947 {
1948 putchar_e7000 (CTRLC); /* interrupt the running program */
1949 quit_flag = 0;
1950 }
1951
1952 for (i = 0; i < n; i++)
1953 {
1954 if (c == ptr[i][0])
1955 {
1956 ptr[i]++;
1957 if (ptr[i][0] == 0)
1958 {
1959 /* Gone all the way */
1960 return i;
1961 }
1962 gotone = 1;
1963 }
1964 else
1965 {
1966 ptr[i] = strings[i];
1967 }
1968 }
1969
1970 if (gotone)
1971 {
1972 /* Save it up incase we find that there was no match */
1973 *buffer ++ = c;
1974 }
1975 else
1976 {
1977 if (buffer != saveaway)
1978 {
1979 *buffer++ = 0;
1980 printf_unfiltered ("%s", buffer);
1981 buffer = saveaway;
1982 }
1983 if (c != -1)
1984 {
1985 putchar_unfiltered (c);
1986 gdb_flush (gdb_stdout);
1987 }
1988 }
1989 }
1990 }
1991
1992 /* We subtract two from the pc here rather than use
1993 DECR_PC_AFTER_BREAK since the e7000 doesn't always add two to the
1994 pc, and the simulators never do. */
1995
1996 static void
1997 sub2_from_pc ()
1998 {
1999 char buf[4];
2000 char buf2[200];
2001
2002 store_signed_integer (buf,
2003 REGISTER_RAW_SIZE(PC_REGNUM),
2004 read_register (PC_REGNUM) -2);
2005 supply_register (PC_REGNUM, buf);
2006 sprintf (buf2, ".PC %x\r", read_register (PC_REGNUM));
2007 puts_e7000debug (buf2);
2008 }
2009
2010 #define WAS_SLEEP 0
2011 #define WAS_INT 1
2012 #define WAS_RUNNING 2
2013 #define WAS_OTHER 3
2014
2015 static char *estrings[] = {
2016 "** SLEEP",
2017 "BREAK !",
2018 "** PC",
2019 "PC",
2020 NULL
2021 };
2022
2023 /* Wait until the remote machine stops, then return, storing status in
2024 STATUS just as `wait' would. */
2025
2026 static int
2027 e7000_wait (pid, status)
2028 int pid;
2029 struct target_waitstatus *status;
2030 {
2031 int stop_reason;
2032 int regno;
2033 int running_count = 0;
2034 int had_sleep = 0;
2035 int loop = 1;
2036 char *wanted_nopc;
2037
2038 /* Then echo chars until PC= string seen */
2039 gch (); /* Drop cr */
2040 gch (); /* and space */
2041
2042 while (loop)
2043 {
2044 switch (expect_n (estrings))
2045 {
2046 case WAS_OTHER:
2047 /* how did this happen ? */
2048 loop = 0;
2049 break;
2050 case WAS_SLEEP:
2051 had_sleep = 1;
2052 putchar_e7000 (CTRLC);
2053 loop = 0;
2054 break;
2055 case WAS_INT:
2056 loop = 0;
2057 break;
2058 case WAS_RUNNING:
2059 running_count++;
2060 if (running_count == 20)
2061 {
2062 printf_unfiltered ("[running...]\n");
2063 running_count = 0;
2064 }
2065 break;
2066 default:
2067 /* error? */
2068 break;
2069 }
2070 }
2071
2072 /* Skip till the PC= */
2073 expect ("=");
2074
2075 #ifdef GDB_TARGET_IS_SH
2076 wanted_nopc = want_nopc;
2077 if (TARGET_ARCHITECTURE->arch == bfd_arch_sh)
2078 switch (TARGET_ARCHITECTURE->mach)
2079 {
2080 case bfd_mach_sh3:
2081 case bfd_mach_sh3e:
2082 wanted_nopc = want_sh3_nopc;
2083 }
2084 #else
2085 if (h8300smode)
2086 wanted_nopc = want_nopc_h8300s;
2087 else
2088 wanted_nopc = want_nopc_h8300h;
2089 #endif
2090 fetch_regs_from_dump (gch, wanted_nopc);
2091
2092 /* And supply the extra ones the simulator uses */
2093 for (regno = NUM_REALREGS; regno < NUM_REGS; regno++)
2094 {
2095 int buf = 0;
2096 supply_register (regno, (char *) &buf);
2097 }
2098
2099 stop_reason = why_stop ();
2100 expect_full_prompt ();
2101
2102 status->kind = TARGET_WAITKIND_STOPPED;
2103 status->value.sig = TARGET_SIGNAL_TRAP;
2104
2105 switch (stop_reason)
2106 {
2107 case 1: /* Breakpoint */
2108 write_pc (read_pc ()); /* PC is always off by 2 for breakpoints */
2109 status->value.sig = TARGET_SIGNAL_TRAP;
2110 break;
2111 case 0: /* Single step */
2112 status->value.sig = TARGET_SIGNAL_TRAP;
2113 break;
2114 case 2: /* Interrupt */
2115 if (had_sleep)
2116 {
2117 status->value.sig = TARGET_SIGNAL_TRAP;
2118 sub2_from_pc ();
2119 }
2120 else
2121 {
2122 status->value.sig = TARGET_SIGNAL_INT;
2123 }
2124 break;
2125 case 3:
2126 break;
2127 case 4:
2128 printf_unfiltered ("a cycle address error?\n");
2129 status->value.sig = TARGET_SIGNAL_UNKNOWN;
2130 break;
2131 case 5:
2132 status->value.sig = TARGET_SIGNAL_ILL;
2133 break;
2134 case 6:
2135 status->value.sig = TARGET_SIGNAL_SEGV;
2136 break;
2137 case 7: /* Anything else (NITEMS + 1) */
2138 printf_unfiltered ("a write protect error?\n");
2139 status->value.sig = TARGET_SIGNAL_UNKNOWN;
2140 break;
2141 default:
2142 /* Get the user's attention - this should never happen. */
2143 abort ();
2144 }
2145
2146 return 0;
2147 }
2148
2149 /* Stop the running program. */
2150
2151 static void
2152 e7000_stop ()
2153 {
2154 /* Sending a ^C is supposed to stop the running program. */
2155 putchar_e7000 (CTRLC);
2156 }
2157
2158 /* Define the target subroutine names. */
2159
2160 struct target_ops e7000_ops ;
2161
2162 static void
2163 init_e7000_ops(void)
2164 {
2165 e7000_ops.to_shortname = "e7000";
2166 e7000_ops.to_longname = "Remote Hitachi e7000 target";
2167 e7000_ops.to_doc = "Use a remote Hitachi e7000 ICE connected by a serial line;\n\
2168 or a network connection.\n\
2169 Arguments are the name of the device for the serial line,\n\
2170 the speed to connect at in bits per second.\n\
2171 eg\n\
2172 target e7000 /dev/ttya 9600\n\
2173 target e7000 foobar" ;
2174 e7000_ops.to_open = e7000_open;
2175 e7000_ops.to_close = e7000_close;
2176 e7000_ops.to_attach = 0;
2177 e7000_ops.to_post_attach = NULL;
2178 e7000_ops.to_require_attach = NULL;
2179 e7000_ops.to_detach = e7000_detach;
2180 e7000_ops.to_require_detach = NULL;
2181 e7000_ops.to_resume = e7000_resume;
2182 e7000_ops.to_wait = e7000_wait;
2183 e7000_ops.to_post_wait = NULL;
2184 e7000_ops.to_fetch_registers = e7000_fetch_register;
2185 e7000_ops.to_store_registers = e7000_store_register;
2186 e7000_ops.to_prepare_to_store = e7000_prepare_to_store;
2187 e7000_ops.to_xfer_memory = e7000_xfer_inferior_memory;
2188 e7000_ops.to_files_info = e7000_files_info;
2189 e7000_ops.to_insert_breakpoint = e7000_insert_breakpoint;
2190 e7000_ops.to_remove_breakpoint = e7000_remove_breakpoint;
2191 e7000_ops.to_terminal_init = 0;
2192 e7000_ops.to_terminal_inferior = 0;
2193 e7000_ops.to_terminal_ours_for_output = 0;
2194 e7000_ops.to_terminal_ours = 0;
2195 e7000_ops.to_terminal_info = 0;
2196 e7000_ops.to_kill = e7000_kill;
2197 e7000_ops.to_load = e7000_load;
2198 e7000_ops.to_lookup_symbol = 0;
2199 e7000_ops.to_create_inferior = e7000_create_inferior;
2200 e7000_ops.to_post_startup_inferior = NULL;
2201 e7000_ops.to_acknowledge_created_inferior = NULL;
2202 e7000_ops.to_clone_and_follow_inferior = NULL;
2203 e7000_ops.to_post_follow_inferior_by_clone = NULL;
2204 e7000_ops.to_insert_fork_catchpoint = NULL;
2205 e7000_ops.to_remove_fork_catchpoint = NULL;
2206 e7000_ops.to_insert_vfork_catchpoint = NULL;
2207 e7000_ops.to_remove_vfork_catchpoint = NULL;
2208 e7000_ops.to_has_forked = NULL;
2209 e7000_ops.to_has_vforked = NULL;
2210 e7000_ops.to_can_follow_vfork_prior_to_exec = NULL;
2211 e7000_ops.to_post_follow_vfork = NULL;
2212 e7000_ops.to_insert_exec_catchpoint = NULL;
2213 e7000_ops.to_remove_exec_catchpoint = NULL;
2214 e7000_ops.to_has_execd = NULL;
2215 e7000_ops.to_reported_exec_events_per_exec_call = NULL;
2216 e7000_ops.to_has_exited = NULL;
2217 e7000_ops.to_mourn_inferior = e7000_mourn_inferior;
2218 e7000_ops.to_can_run = 0;
2219 e7000_ops.to_notice_signals = 0;
2220 e7000_ops.to_thread_alive = 0;
2221 e7000_ops.to_stop = e7000_stop;
2222 e7000_ops.to_pid_to_exec_file = NULL;
2223 e7000_ops.to_core_file_to_sym_file = NULL;
2224 e7000_ops.to_stratum = process_stratum;
2225 e7000_ops.DONT_USE = 0;
2226 e7000_ops.to_has_all_memory = 1;
2227 e7000_ops.to_has_memory = 1;
2228 e7000_ops.to_has_stack = 1;
2229 e7000_ops.to_has_registers = 1;
2230 e7000_ops.to_has_execution = 1;
2231 e7000_ops.to_sections = 0;
2232 e7000_ops.to_sections_end = 0;
2233 e7000_ops.to_magic = OPS_MAGIC;
2234 };
2235
2236 void
2237 _initialize_remote_e7000 ()
2238 {
2239 init_e7000_ops() ;
2240 add_target (&e7000_ops);
2241
2242 add_com ("e7000", class_obscure, e7000_command,
2243 "Send a command to the e7000 monitor.");
2244
2245 add_com ("ftplogin", class_obscure, e7000_login_command,
2246 "Login to machine and change to directory.");
2247
2248 add_com ("ftpload", class_obscure, e7000_ftp_command,
2249 "Fetch and load a file from previously described place.");
2250
2251 add_com ("drain", class_obscure, e7000_drain_command,
2252 "Drain pending e7000 text buffers.");
2253
2254 add_show_from_set (add_set_cmd ("usehardbreakpoints", no_class,
2255 var_integer, (char *)&use_hard_breakpoints,
2256 "Set use of hardware breakpoints for all breakpoints.\n", &setlist),
2257 &showlist);
2258 }