]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/remote-e7000.c
import gdb-19990422 snapshot
[thirdparty/binutils-gdb.git] / gdb / remote-e7000.c
CommitLineData
c906108c
SS
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
63extern void notice_quit PARAMS ((void));
64
65extern void report_transfer_performance PARAMS ((unsigned long,
66 time_t, time_t));
67
68extern char *sh_processor_type;
69
70/* Local function declarations. */
71
72static void e7000_close PARAMS ((int));
73
74static void e7000_fetch_register PARAMS ((int));
75
76static void e7000_store_register PARAMS ((int));
77
78static void e7000_command PARAMS ((char *, int));
79
80static void e7000_login_command PARAMS ((char *, int));
81
82static void e7000_ftp_command PARAMS ((char *, int));
83
84static void e7000_drain_command PARAMS ((char *, int));
85
86static void expect PARAMS ((char *));
87
88static void expect_full_prompt PARAMS ((void));
89
90static void expect_prompt PARAMS ((void));
91
92static int e7000_parse_device PARAMS ((char *args, char *dev_name,
93 int baudrate));
94/* Variables. */
95
96static serial_t e7000_desc;
97
98/* Allow user to chose between using hardware breakpoints or memory. */
99static int use_hard_breakpoints = 0; /* use sw breakpoints by default */
100
101/* Nonzero if using the tcp serial driver. */
102
103static int using_tcp; /* direct tcp connection to target */
104static int using_tcp_remote; /* indirect connection to target
105 via tcp to controller */
106
107/* Nonzero if using the pc isa card. */
108
109static int using_pc;
110
111extern struct target_ops e7000_ops; /* Forward declaration */
112
113char *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
118static int echo;
119
120static int ctrl_c;
121
122static int timeout = 20;
123
124/* Send data to e7000debug. */
125
126static void
127puts_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
146static void
147putchar_e7000 (x)
148 int x;
149{
150 char b[1];
151
152 b[0] = x;
153 SERIAL_WRITE (e7000_desc, b, 1);
154}
155
156static void
157write_e7000 (s)
158 char *s;
159{
160 SERIAL_WRITE (e7000_desc, s, strlen (s));
161}
162
163static int
164normal (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
176static int
177readchar (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
208char *
209tl (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
234static void
235expect (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
305static void
306expect_prompt ()
307{
308 expect (":");
309}
310
311static void
312expect_full_prompt ()
313{
314 expect ("\r:");
315}
316
317static int
318convert_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
330static int
331get_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
351static void
352get_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
374static void
375e7000_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
416static int baudrate = 9600;
417static char dev_name[100];
418
419static char *machine = "";
420static char *user = "";
421static char *passwd = "";
422static char *dir = "";
423
424/* Grab the next token and buy some space for it */
425
426static char *
427next (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
450static void
451e7000_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
474static void
475e7000_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
506static int
507e7000_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\
538or \t\ttarget e7000 <host>[:<port>]\n\
539or \t\ttarget e7000 tcp_remote <host>[:<port>]\n\
540or \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
561static int
562e7000_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
652static void
653e7000_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
689static void
690e7000_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
703static void
704e7000_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
714static void
715e7000_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
738char *want_h8300h = "PC=%p CCR=%c\n\
739 ER0 - ER3 %0 %1 %2 %3\n\
740 ER4 - ER7 %4 %5 %6 %7\n";
741
742char *want_nopc_h8300h = "%p CCR=%c\n\
743 ER0 - ER3 %0 %1 %2 %3\n\
744 ER4 - ER7 %4 %5 %6 %7";
745
746char *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
751char *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
759char *want = "PC=%16 SR=%22\n\
760PR=%17 GBR=%18 VBR=%19\n\
761MACH=%20 MACL=%21\n\
762R0-7 %0 %1 %2 %3 %4 %5 %6 %7\n\
763R8-15 %8 %9 %10 %11 %12 %13 %14 %15\n";
764
765char *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
771char *want_sh3 = "PC=%16 SR=%22\n\
772PR=%17 GBR=%18 VBR=%19\n\
773MACH=%20 MACL=%21 SSR=%23 SPC=%24\n\
774R0-7 %0 %1 %2 %3 %4 %5 %6 %7\n\
775R8-15 %8 %9 %10 %11 %12 %13 %14 %15\n\
776R0_BANK0-R3_BANK0 %25 %26 %27 %28\n\
777R4_BANK0-R7_BANK0 %29 %30 %31 %32\n\
778R0_BANK1-R3_BANK1 %33 %34 %35 %36\n\
779R4_BANK1-R7_BANK1 %37 %38 %39 %40";
780
781char *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
793static int
794gch ()
795{
796 return readchar (timeout);
797}
798
799static unsigned int
800gbyte ()
801{
802 int high = convert_hex_digit (gch ());
803 int low = convert_hex_digit (gch ());
804
805 return (high << 4) + low;
806}
807
808void
809fetch_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
915static void
916e7000_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:
7a292a7a 930 case bfd_mach_sh4:
c906108c
SS
931 wanted = want_sh3;
932 }
933#else
934 if (h8300smode)
935 wanted = want_h8300s;
936 else
937 wanted = want_h8300h;
938#endif
939 fetch_regs_from_dump (gch, wanted);
940
941 /* And supply the extra ones the simulator uses */
942 for (regno = NUM_REALREGS; regno < NUM_REGS; regno++)
943 {
944 int buf = 0;
945
946 supply_register (regno, (char *) (&buf));
947 }
948}
949
950/* Fetch register REGNO, or all registers if REGNO is -1. Returns
951 errno value. */
952
953static void
954e7000_fetch_register (regno)
955 int regno;
956{
957 e7000_fetch_registers ();
958}
959
960/* Store the remote registers from the contents of the block REGS. */
961
962static void
963e7000_store_registers ()
964{
965 int regno;
966
967 for (regno = 0; regno < NUM_REALREGS; regno++)
968 e7000_store_register (regno);
969
970 registers_changed ();
971}
972
973/* Store register REGNO, or all if REGNO == 0. Return errno value. */
974
975static void
976e7000_store_register (regno)
977 int regno;
978{
979 char buf[200];
980
981 if (regno == -1)
982 {
983 e7000_store_registers ();
984 return;
985 }
986
987#ifdef GDB_TARGET_IS_H8300
988 if (regno <= 7)
989 {
990 sprintf (buf, ".ER%d %x\r", regno, read_register (regno));
991 puts_e7000debug (buf);
992 }
993 else if (regno == PC_REGNUM)
994 {
995 sprintf (buf, ".PC %x\r", read_register (regno));
996 puts_e7000debug (buf);
997 }
998 else if (regno == CCR_REGNUM)
999 {
1000 sprintf (buf, ".CCR %x\r", read_register (regno));
1001 puts_e7000debug (buf);
1002 }
1003#endif /* GDB_TARGET_IS_H8300 */
1004
1005#ifdef GDB_TARGET_IS_SH
1006 switch (regno)
1007 {
1008 default:
1009 sprintf (buf, ".R%d %x\r", regno, read_register (regno));
1010 puts_e7000debug (buf);
1011 break;
1012
1013 case PC_REGNUM:
1014 sprintf (buf, ".PC %x\r", read_register (regno));
1015 puts_e7000debug (buf);
1016 break;
1017
1018 case SR_REGNUM:
1019 sprintf (buf, ".SR %x\r", read_register (regno));
1020 puts_e7000debug (buf);
1021 break;
1022
1023 case PR_REGNUM:
1024 sprintf (buf, ".PR %x\r", read_register (regno));
1025 puts_e7000debug (buf);
1026 break;
1027
1028 case GBR_REGNUM:
1029 sprintf (buf, ".GBR %x\r", read_register (regno));
1030 puts_e7000debug (buf);
1031 break;
1032
1033 case VBR_REGNUM:
1034 sprintf (buf, ".VBR %x\r", read_register (regno));
1035 puts_e7000debug (buf);
1036 break;
1037
1038 case MACH_REGNUM:
1039 sprintf (buf, ".MACH %x\r", read_register (regno));
1040 puts_e7000debug (buf);
1041 break;
1042
1043 case MACL_REGNUM:
1044 sprintf (buf, ".MACL %x\r", read_register (regno));
1045 puts_e7000debug (buf);
1046 break;
1047 }
1048
1049#endif /* GDB_TARGET_IS_SH */
1050
1051 expect_prompt ();
1052}
1053
1054/* Get ready to modify the registers array. On machines which store
1055 individual registers, this doesn't need to do anything. On machines
1056 which store all the registers in one fell swoop, this makes sure
1057 that registers contains all the registers from the program being
1058 debugged. */
1059
1060static void
1061e7000_prepare_to_store ()
1062{
1063 /* Do nothing, since we can store individual regs */
1064}
1065
1066static void
1067e7000_files_info ()
1068{
1069 printf_unfiltered ("\tAttached to %s at %d baud.\n", dev_name, baudrate);
1070}
1071
1072static int
1073stickbyte (where, what)
1074 char *where;
1075 unsigned int what;
1076{
1077 static CONST char digs[] = "0123456789ABCDEF";
1078
1079 where[0] = digs[(what >> 4) & 0xf];
1080 where[1] = digs[(what & 0xf) & 0xf];
1081
1082 return what;
1083}
1084
1085/* Write a small ammount of memory. */
1086
1087static int
1088write_small (memaddr, myaddr, len)
1089 CORE_ADDR memaddr;
1090 unsigned char *myaddr;
1091 int len;
1092{
1093 int i;
1094 char buf[200];
1095
1096 for (i = 0; i < len; i++)
1097 {
1098 if (((memaddr + i) & 3) == 0 && (i + 3 < len))
1099 {
1100 /* Can be done with a long word */
1101 sprintf (buf, "m %x %x%02x%02x%02x;l\r",
1102 memaddr + i,
1103 myaddr[i], myaddr[i + 1], myaddr[i + 2], myaddr[i + 3]);
1104 puts_e7000debug (buf);
1105 i += 3;
1106 }
1107 else
1108 {
1109 sprintf (buf, "m %x %x\r", memaddr + i, myaddr[i]);
1110 puts_e7000debug (buf);
1111 }
1112 }
1113
1114 expect_prompt ();
1115
1116 return len;
1117}
1118
1119/* Write a large ammount of memory, this only works with the serial
1120 mode enabled. Command is sent as
1121
1122 il ;s:s\r ->
1123 <- il ;s:s\r
1124 <- ENQ
1125 ACK ->
1126 <- LO s\r
1127 Srecords...
1128 ^Z ->
1129 <- ENQ
1130 ACK ->
1131 <- :
1132 */
1133
1134static int
1135write_large (memaddr, myaddr, len)
1136 CORE_ADDR memaddr;
1137 unsigned char *myaddr;
1138 int len;
1139{
1140 int i;
1141#define maxstride 128
1142 int stride;
1143
1144 puts_e7000debug ("IL ;S:FK\r");
1145 expect (ENQSTRING);
1146 putchar_e7000 (ACK);
1147 expect ("LO FK\r");
1148
1149 for (i = 0; i < len; i += stride)
1150 {
1151 char compose[maxstride * 2 + 50];
1152 int address = i + memaddr;
1153 int j;
1154 int check_sum;
1155 int where = 0;
1156 int alen;
1157
1158 stride = len - i;
1159 if (stride > maxstride)
1160 stride = maxstride;
1161
1162 compose[where++] = 'S';
1163 check_sum = 0;
1164 if (address >= 0xffffff)
1165 alen = 4;
1166 else if (address >= 0xffff)
1167 alen = 3;
1168 else
1169 alen = 2;
1170 /* Insert type. */
1171 compose[where++] = alen - 1 + '0';
1172 /* Insert length. */
1173 check_sum += stickbyte (compose + where, alen + stride + 1);
1174 where += 2;
1175 while (alen > 0)
1176 {
1177 alen--;
1178 check_sum += stickbyte (compose + where, address >> (8 * (alen)));
1179 where += 2;
1180 }
1181
1182 for (j = 0; j < stride; j++)
1183 {
1184 check_sum += stickbyte (compose + where, myaddr[i + j]);
1185 where += 2;
1186 }
1187 stickbyte (compose + where, ~check_sum);
1188 where += 2;
1189 compose[where++] = '\r';
1190 compose[where++] = '\n';
1191 compose[where++] = 0;
1192
1193 SERIAL_WRITE (e7000_desc, compose, where);
1194 j = readchar (0);
1195 if (j == -1)
1196 {
1197 /* This is ok - nothing there */
1198 }
1199 else if (j == ENQ)
1200 {
1201 /* Hmm, it's trying to tell us something */
1202 expect (":");
1203 error ("Error writing memory");
1204 }
1205 else
1206 {
1207 printf_unfiltered ("@%d}@", j);
1208 while ((j = readchar (0)) > 0)
1209 {
1210 printf_unfiltered ("@{%d}@",j);
1211 }
1212 }
1213 }
1214
1215 /* Send the trailer record */
1216 write_e7000 ("S70500000000FA\r");
1217 putchar_e7000 (CTRLZ);
1218 expect (ENQSTRING);
1219 putchar_e7000 (ACK);
1220 expect (":");
1221
1222 return len;
1223}
1224
1225/* Copy LEN bytes of data from debugger memory at MYADDR to inferior's
1226 memory at MEMADDR. Returns length moved.
1227
1228 Can't use the Srecord load over ethernet, so don't use fast method
1229 then. */
1230
1231static int
1232e7000_write_inferior_memory (memaddr, myaddr, len)
1233 CORE_ADDR memaddr;
1234 unsigned char *myaddr;
1235 int len;
1236{
1237 if (len < 16 || using_tcp || using_pc)
1238 return write_small (memaddr, myaddr, len);
1239 else
1240 return write_large (memaddr, myaddr, len);
1241}
1242
1243/* Read LEN bytes from inferior memory at MEMADDR. Put the result
1244 at debugger address MYADDR. Returns length moved.
1245
1246 Small transactions we send
1247 m <addr>;l
1248 and receive
1249 00000000 12345678 ?
1250 */
1251
1252static int
1253e7000_read_inferior_memory (memaddr, myaddr, len)
1254 CORE_ADDR memaddr;
1255 unsigned char *myaddr;
1256 int len;
1257{
1258 int count;
1259 int c;
1260 int i;
1261 char buf[200];
1262 /* Starting address of this pass. */
1263
1264/* printf("READ INF %x %x %d\n", memaddr, myaddr, len);*/
1265 if (((memaddr - 1) + len) < memaddr)
1266 {
1267 errno = EIO;
1268 return 0;
1269 }
1270
1271 sprintf (buf, "m %x;l\r", memaddr);
1272 puts_e7000debug (buf);
1273
1274 for (count = 0; count < len; count += 4)
1275 {
1276 /* Suck away the address */
1277 c = gch ();
1278 while (c != ' ')
1279 c = gch ();
1280 c = gch ();
1281 if (c == '*')
1282 { /* Some kind of error */
1283 puts_e7000debug (".\r"); /* Some errors leave us in memory input mode */
1284 expect_full_prompt();
1285 return -1;
1286 }
1287 while (c != ' ')
1288 c = gch ();
1289
1290 /* Now read in the data */
1291 for (i = 0; i < 4; i++)
1292 {
1293 int b = gbyte();
1294 if (count + i < len) {
1295 myaddr[count + i] = b;
1296 }
1297 }
1298
1299 /* Skip the trailing ? and send a . to end and a cr for more */
1300 gch ();
1301 gch ();
1302 if (count + 4 >= len)
1303 puts_e7000debug(".\r");
1304 else
1305 puts_e7000debug("\r");
1306
1307 }
1308 expect_prompt();
1309 return len;
1310}
1311
1312
1313
1314/*
1315 For large transfers we used to send
1316
1317
1318 d <addr> <endaddr>\r
1319
1320 and receive
1321 <ADDRESS> < D A T A > < ASCII CODE >
1322 00000000 5F FD FD FF DF 7F DF FF 01 00 01 00 02 00 08 04 "_..............."
1323 00000010 FF D7 FF 7F D7 F1 7F FF 00 05 00 00 08 00 40 00 "..............@."
1324 00000020 7F FD FF F7 7F FF FF F7 00 00 00 00 00 00 00 00 "................"
1325
1326 A cost in chars for each transaction of 80 + 5*n-bytes.
1327
1328 Large transactions could be done with the srecord load code, but
1329 there is a pause for a second before dumping starts, which slows the
1330 average rate down!
1331*/
1332
1333static int
1334e7000_read_inferior_memory_large (memaddr, myaddr, len)
1335 CORE_ADDR memaddr;
1336 unsigned char *myaddr;
1337 int len;
1338{
1339 int count;
1340 int c;
1341 char buf[200];
1342
1343 /* Starting address of this pass. */
1344
1345 if (((memaddr - 1) + len) < memaddr)
1346 {
1347 errno = EIO;
1348 return 0;
1349 }
1350
1351 sprintf (buf, "d %x %x\r", memaddr, memaddr + len - 1);
1352 puts_e7000debug (buf);
1353
1354 count = 0;
1355 c = gch ();
1356
1357 /* skip down to the first ">" */
1358 while( c != '>' )
1359 c = gch ();
1360 /* now skip to the end of that line */
1361 while( c != '\r' )
1362 c = gch ();
1363 c = gch ();
1364
1365 while (count < len)
1366 {
1367 /* get rid of any white space before the address */
1368 while (c <= ' ')
1369 c = gch ();
1370
1371 /* Skip the address */
1372 get_hex (&c);
1373
1374 /* read in the bytes on the line */
1375 while (c != '"' && count < len)
1376 {
1377 if (c == ' ')
1378 c = gch ();
1379 else
1380 {
1381 myaddr[count++] = get_hex (&c);
1382 }
1383 }
1384 /* throw out the rest of the line */
1385 while( c != '\r' )
1386 c = gch ();
1387 }
1388
1389 /* wait for the ":" prompt */
1390 while (c != ':')
1391 c = gch ();
1392
1393 return len;
1394}
1395
1396#if 0
1397
1398static int
1399fast_but_for_the_pause_e7000_read_inferior_memory (memaddr, myaddr, len)
1400 CORE_ADDR memaddr;
1401 char *myaddr;
1402 int len;
1403{
1404 int loop;
1405 int c;
1406 char buf[200];
1407
1408 if (((memaddr - 1) + len) < memaddr)
1409 {
1410 errno = EIO;
1411 return 0;
1412 }
1413
1414 sprintf (buf, "is %x@%x:s\r", memaddr, len);
1415 puts_e7000debug (buf);
1416 gch ();
1417 c = gch ();
1418 if (c != ENQ)
1419 {
1420 /* Got an error */
1421 error ("Memory read error");
1422 }
1423 putchar_e7000 (ACK);
1424 expect ("SV s");
1425 loop = 1;
1426 while (loop)
1427 {
1428 int type;
1429 int length;
1430 int addr;
1431 int i;
1432
1433 c = gch ();
1434 switch (c)
1435 {
1436 case ENQ: /* ENQ, at the end */
1437 loop = 0;
1438 break;
1439 case 'S':
1440 /* Start of an Srecord */
1441 type = gch ();
1442 length = gbyte ();
1443 switch (type)
1444 {
1445 case '7': /* Termination record, ignore */
1446 case '0':
1447 case '8':
1448 case '9':
1449 /* Header record - ignore it */
1450 while (length--)
1451 {
1452 gbyte ();
1453 }
1454 break;
1455 case '1':
1456 case '2':
1457 case '3':
1458 {
1459 int alen;
1460
1461 alen = type - '0' + 1;
1462 addr = 0;
1463 while (alen--)
1464 {
1465 addr = (addr << 8) + gbyte ();
1466 length--;
1467 }
1468
1469 for (i = 0; i < length - 1; i++)
1470 myaddr[i + addr - memaddr] = gbyte ();
1471
1472 gbyte (); /* Ignore checksum */
1473 }
1474 }
1475 }
1476 }
1477
1478 putchar_e7000 (ACK);
1479 expect ("TOP ADDRESS =");
1480 expect ("END ADDRESS =");
1481 expect (":");
1482
1483 return len;
1484}
1485
1486#endif
1487
1488static int
1489e7000_xfer_inferior_memory (memaddr, myaddr, len, write, target)
1490 CORE_ADDR memaddr;
1491 unsigned char *myaddr;
1492 int len;
1493 int write;
1494 struct target_ops *target; /* ignored */
1495{
1496 if (write)
1497 return e7000_write_inferior_memory( memaddr, myaddr, len);
1498 else
1499 if( len < 16 )
1500 return e7000_read_inferior_memory( memaddr, myaddr, len);
1501 else
1502 return e7000_read_inferior_memory_large( memaddr, myaddr, len);
1503}
1504
1505static void
1506e7000_kill (args, from_tty)
1507 char *args;
1508 int from_tty;
1509{
1510}
1511
1512static void
1513e7000_load (args, from_tty)
1514 char *args;
1515 int from_tty;
1516{
1517 struct cleanup *old_chain;
1518 asection *section;
1519 bfd *pbfd;
1520 bfd_vma entry;
1521#define WRITESIZE 0x1000
1522 char buf[2 + 4 + 4 + WRITESIZE]; /* `DT' + <addr> + <len> + <data> */
1523 char *filename;
1524 int quiet;
1525 int nostart;
1526 time_t start_time, end_time; /* Start and end times of download */
1527 unsigned long data_count; /* Number of bytes transferred to memory */
1528 int oldtimeout = timeout;
1529
1530 timeout = remote_timeout;
1531
1532
1533 /* FIXME! change test to test for type of download */
1534 if (!using_tcp)
1535 {
1536 generic_load (args, from_tty);
1537 return;
1538 }
1539
1540 /* for direct tcp connections, we can do a fast binary download */
1541 buf[0] = 'D';
1542 buf[1] = 'T';
1543 quiet = 0;
1544 nostart = 0;
1545 filename = NULL;
1546
1547 while (*args != '\000')
1548 {
1549 char *arg;
1550
1551 while (isspace (*args)) args++;
1552
1553 arg = args;
1554
1555 while ((*args != '\000') && !isspace (*args)) args++;
1556
1557 if (*args != '\000')
1558 *args++ = '\000';
1559
1560 if (*arg != '-')
1561 filename = arg;
1562 else if (strncmp (arg, "-quiet", strlen (arg)) == 0)
1563 quiet = 1;
1564 else if (strncmp (arg, "-nostart", strlen (arg)) == 0)
1565 nostart = 1;
1566 else
1567 error ("unknown option `%s'", arg);
1568 }
1569
1570 if (!filename)
1571 filename = get_exec_file (1);
1572
1573 pbfd = bfd_openr (filename, gnutarget);
1574 if (pbfd == NULL)
1575 {
1576 perror_with_name (filename);
1577 return;
1578 }
1579 old_chain = make_cleanup ((make_cleanup_func) bfd_close, pbfd);
1580
1581 if (!bfd_check_format (pbfd, bfd_object))
1582 error ("\"%s\" is not an object file: %s", filename,
1583 bfd_errmsg (bfd_get_error ()));
1584
1585 start_time = time (NULL);
1586 data_count = 0;
1587
1588 puts_e7000debug ("mw\r");
1589
1590 expect ("\nOK");
1591
1592 for (section = pbfd->sections; section; section = section->next)
1593 {
1594 if (bfd_get_section_flags (pbfd, section) & SEC_LOAD)
1595 {
1596 bfd_vma section_address;
1597 bfd_size_type section_size;
1598 file_ptr fptr;
1599
1600 section_address = bfd_get_section_vma (pbfd, section);
1601 section_size = bfd_get_section_size_before_reloc (section);
1602
1603 if (!quiet)
1604 printf_filtered ("[Loading section %s at 0x%x (%d bytes)]\n",
1605 bfd_get_section_name (pbfd, section),
1606 section_address,
1607 section_size);
1608
1609 fptr = 0;
1610
1611 data_count += section_size;
1612
1613 while (section_size > 0)
1614 {
1615 int count;
1616 static char inds[] = "|/-\\";
1617 static int k = 0;
1618
1619 QUIT;
1620
1621 count = min (section_size, WRITESIZE);
1622
1623 buf[2] = section_address >> 24;
1624 buf[3] = section_address >> 16;
1625 buf[4] = section_address >> 8;
1626 buf[5] = section_address;
1627
1628 buf[6] = count >> 24;
1629 buf[7] = count >> 16;
1630 buf[8] = count >> 8;
1631 buf[9] = count;
1632
1633 bfd_get_section_contents (pbfd, section, buf + 10, fptr, count);
1634
1635 if (SERIAL_WRITE (e7000_desc, buf, count + 10))
1636 fprintf_unfiltered (gdb_stderr,
1637 "e7000_load: SERIAL_WRITE failed: %s\n",
1638 safe_strerror(errno));
1639
1640 expect ("OK");
1641
1642 if (!quiet)
1643 {
1644 printf_unfiltered ("\r%c", inds[k++ % 4]);
1645 gdb_flush (gdb_stdout);
1646 }
1647
1648 section_address += count;
1649 fptr += count;
1650 section_size -= count;
1651 }
1652 }
1653 }
1654
1655 write_e7000 ("ED");
1656
1657 expect_prompt ();
1658
1659 end_time = time (NULL);
1660
1661/* Finally, make the PC point at the start address */
1662
1663 if (exec_bfd)
1664 write_pc (bfd_get_start_address (exec_bfd));
1665
1666 inferior_pid = 0; /* No process now */
1667
1668/* This is necessary because many things were based on the PC at the time that
1669 we attached to the monitor, which is no longer valid now that we have loaded
1670 new code (and just changed the PC). Another way to do this might be to call
1671 normal_stop, except that the stack may not be valid, and things would get
1672 horribly confused... */
1673
1674 clear_symtab_users ();
1675
1676 if (!nostart)
1677 {
1678 entry = bfd_get_start_address (pbfd);
1679
1680 if (!quiet)
1681 printf_unfiltered ("[Starting %s at 0x%x]\n", filename, entry);
1682
1683/* start_routine (entry);*/
1684 }
1685
1686 report_transfer_performance (data_count, start_time, end_time);
1687
1688 do_cleanups (old_chain);
1689 timeout = oldtimeout;
1690}
1691
1692/* Clean up when a program exits.
1693
1694 The program actually lives on in the remote processor's RAM, and may be
1695 run again without a download. Don't leave it full of breakpoint
1696 instructions. */
1697
1698static void
1699e7000_mourn_inferior ()
1700{
1701 remove_breakpoints ();
1702 unpush_target (&e7000_ops);
1703 generic_mourn_inferior (); /* Do all the proper things now */
1704}
1705
1706#define MAX_BREAKPOINTS 200
1707#ifdef HARD_BREAKPOINTS
1708#define MAX_E7000DEBUG_BREAKPOINTS (BC_BREAKPOINTS ? 5 : MAX_BREAKPOINTS)
1709#else
1710#define MAX_E7000DEBUG_BREAKPOINTS MAX_BREAKPOINTS
1711#endif
1712
1713/* Since we can change to soft breakpoints dynamically, we must define
1714 more than enough. Was breakaddr[MAX_E7000DEBUG_BREAKPOINTS]. */
1715static CORE_ADDR breakaddr[MAX_BREAKPOINTS] = {0};
1716
1717static int
1718e7000_insert_breakpoint (addr, shadow)
1719 CORE_ADDR addr;
1720 unsigned char *shadow;
1721{
1722 int i;
1723 char buf[200];
1724#if 0
1725 static char nop[2] = NOP;
1726#endif
1727
1728 for (i = 0; i <= MAX_E7000DEBUG_BREAKPOINTS; i++)
1729 if (breakaddr[i] == 0)
1730 {
1731 breakaddr[i] = addr;
1732 /* Save old contents, and insert a nop in the space */
1733#ifdef HARD_BREAKPOINTS
1734 if (BC_BREAKPOINTS)
1735 {
1736 sprintf (buf, "BC%d A=%x\r", i+1, addr);
1737 puts_e7000debug (buf);
1738 }
1739 else
1740 {
1741 sprintf (buf, "B %x\r", addr);
1742 puts_e7000debug (buf);
1743 }
1744#else
1745#if 0
1746 e7000_read_inferior_memory (addr, shadow, 2);
1747 e7000_write_inferior_memory (addr, nop, 2);
1748#endif
1749
1750 sprintf (buf, "B %x\r", addr);
1751 puts_e7000debug (buf);
1752#endif
1753 expect_prompt ();
1754 return 0;
1755 }
1756
1757 error ("Too many breakpoints ( > %d) for the E7000\n",
1758 MAX_E7000DEBUG_BREAKPOINTS);
1759 return 1;
1760}
1761
1762static int
1763e7000_remove_breakpoint (addr, shadow)
1764 CORE_ADDR addr;
1765 unsigned char *shadow;
1766{
1767 int i;
1768 char buf[200];
1769
1770 for (i = 0; i < MAX_E7000DEBUG_BREAKPOINTS; i++)
1771 if (breakaddr[i] == addr)
1772 {
1773 breakaddr[i] = 0;
1774#ifdef HARD_BREAKPOINTS
1775 if (BC_BREAKPOINTS)
1776 {
1777 sprintf (buf, "BC%d - \r", i+1);
1778 puts_e7000debug (buf);
1779 }
1780 else
1781 {
1782 sprintf (buf, "B - %x\r", addr);
1783 puts_e7000debug (buf);
1784 }
1785 expect_prompt ();
1786#else
1787 sprintf (buf, "B - %x\r", addr);
1788 puts_e7000debug (buf);
1789 expect_prompt ();
1790
1791#if 0
1792 /* Replace the insn under the break */
1793 e7000_write_inferior_memory (addr, shadow, 2);
1794#endif
1795#endif
1796
1797 return 0;
1798 }
1799
1800 warning ("Can't find breakpoint associated with 0x%x\n", addr);
1801 return 1;
1802}
1803
1804/* Put a command string, in args, out to STDBUG. Output from STDBUG
1805 is placed on the users terminal until the prompt is seen. */
1806
1807static void
1808e7000_command (args, fromtty)
1809 char *args;
1810 int fromtty;
1811{
1812 /* FIXME: arbitrary limit on length of args. */
1813 char buf[200];
1814
1815 echo = 0;
1816
1817 if (!e7000_desc)
1818 error ("e7000 target not open.");
1819 if (!args)
1820 {
1821 puts_e7000debug ("\r");
1822 }
1823 else
1824 {
1825 sprintf (buf, "%s\r", args);
1826 puts_e7000debug (buf);
1827 }
1828
1829 echo++;
1830 ctrl_c = 2;
1831 expect_full_prompt ();
1832 echo--;
1833 ctrl_c = 0;
1834 printf_unfiltered ("\n");
1835
1836 /* Who knows what the command did... */
1837 registers_changed ();
1838}
1839
1840
1841static void
1842e7000_drain_command (args, fromtty)
1843 char *args;
1844 int fromtty;
1845
1846{
1847 int c;
1848
1849 puts_e7000debug("end\r");
1850 putchar_e7000 (CTRLC);
1851
1852 while ((c = readchar (1) != -1))
1853 {
1854 if (quit_flag)
1855 {
1856 putchar_e7000(CTRLC);
1857 quit_flag = 0;
1858 }
1859 if (c > ' ' && c < 127)
1860 printf_unfiltered ("%c", c & 0xff);
1861 else
1862 printf_unfiltered ("<%x>", c & 0xff);
1863 }
1864}
1865
1866#define NITEMS 7
1867
1868static int
1869why_stop ()
1870{
1871 static char *strings[NITEMS] = {
1872 "STEP NORMAL",
1873 "BREAK POINT",
1874 "BREAK KEY",
1875 "BREAK CONDI",
1876 "CYCLE ACCESS",
1877 "ILLEGAL INSTRUCTION",
1878 "WRITE PROTECT",
1879 };
1880 char *p[NITEMS];
1881 int c;
1882 int i;
1883
1884 for (i = 0; i < NITEMS; ++i)
1885 p[i] = strings[i];
1886
1887 c = gch ();
1888 while (1)
1889 {
1890 for (i = 0; i < NITEMS; i++)
1891 {
1892 if (c == *(p[i]))
1893 {
1894 p[i]++;
1895 if (*(p[i]) == 0)
1896 {
1897 /* found one of the choices */
1898 return i;
1899 }
1900 }
1901 else
1902 p[i] = strings[i];
1903 }
1904
1905 c = gch ();
1906 }
1907}
1908
1909/* Suck characters, if a string match, then return the strings index
1910 otherwise echo them. */
1911
1912int
1913expect_n (strings)
1914char **strings;
1915{
1916 char *(ptr[10]);
1917 int n;
1918 int c;
1919 char saveaway[100];
1920 char *buffer = saveaway;
1921 /* Count number of expect strings */
1922
1923 for (n = 0; strings[n]; n++)
1924 {
1925 ptr[n] = strings[n];
1926 }
1927
1928 while (1)
1929 {
1930 int i;
1931 int gotone = 0;
1932
1933 c = readchar (1);
1934 if (c == -1)
1935 {
1936 printf_unfiltered ("[waiting for e7000...]\n");
1937 }
1938#ifdef __GO32__
1939 if (kbhit ())
1940 {
1941 int k = getkey();
1942
1943 if (k == 1)
1944 quit_flag = 1;
1945 }
1946#endif
1947 if (quit_flag)
1948 {
1949 putchar_e7000 (CTRLC); /* interrupt the running program */
1950 quit_flag = 0;
1951 }
1952
1953 for (i = 0; i < n; i++)
1954 {
1955 if (c == ptr[i][0])
1956 {
1957 ptr[i]++;
1958 if (ptr[i][0] == 0)
1959 {
1960 /* Gone all the way */
1961 return i;
1962 }
1963 gotone = 1;
1964 }
1965 else
1966 {
1967 ptr[i] = strings[i];
1968 }
1969 }
1970
1971 if (gotone)
1972 {
1973 /* Save it up incase we find that there was no match */
1974 *buffer ++ = c;
1975 }
1976 else
1977 {
1978 if (buffer != saveaway)
1979 {
1980 *buffer++ = 0;
1981 printf_unfiltered ("%s", buffer);
1982 buffer = saveaway;
1983 }
1984 if (c != -1)
1985 {
1986 putchar_unfiltered (c);
1987 gdb_flush (gdb_stdout);
1988 }
1989 }
1990 }
1991}
1992
1993/* We subtract two from the pc here rather than use
1994 DECR_PC_AFTER_BREAK since the e7000 doesn't always add two to the
1995 pc, and the simulators never do. */
1996
1997static void
1998sub2_from_pc ()
1999{
2000 char buf[4];
2001 char buf2[200];
2002
2003 store_signed_integer (buf,
2004 REGISTER_RAW_SIZE(PC_REGNUM),
2005 read_register (PC_REGNUM) -2);
2006 supply_register (PC_REGNUM, buf);
2007 sprintf (buf2, ".PC %x\r", read_register (PC_REGNUM));
2008 puts_e7000debug (buf2);
2009}
2010
2011#define WAS_SLEEP 0
2012#define WAS_INT 1
2013#define WAS_RUNNING 2
2014#define WAS_OTHER 3
2015
2016static char *estrings[] = {
2017 "** SLEEP",
2018 "BREAK !",
2019 "** PC",
2020 "PC",
2021 NULL
2022};
2023
2024/* Wait until the remote machine stops, then return, storing status in
2025 STATUS just as `wait' would. */
2026
2027static int
2028e7000_wait (pid, status)
2029 int pid;
2030 struct target_waitstatus *status;
2031{
2032 int stop_reason;
2033 int regno;
2034 int running_count = 0;
2035 int had_sleep = 0;
2036 int loop = 1;
2037 char *wanted_nopc;
2038
2039 /* Then echo chars until PC= string seen */
2040 gch (); /* Drop cr */
2041 gch (); /* and space */
2042
2043 while (loop)
2044 {
2045 switch (expect_n (estrings))
2046 {
2047 case WAS_OTHER:
2048 /* how did this happen ? */
2049 loop = 0;
2050 break;
2051 case WAS_SLEEP:
2052 had_sleep = 1;
2053 putchar_e7000 (CTRLC);
2054 loop = 0;
2055 break;
2056 case WAS_INT:
2057 loop = 0;
2058 break;
2059 case WAS_RUNNING:
2060 running_count++;
2061 if (running_count == 20)
2062 {
2063 printf_unfiltered ("[running...]\n");
2064 running_count = 0;
2065 }
2066 break;
2067 default:
2068 /* error? */
2069 break;
2070 }
2071 }
2072
2073 /* Skip till the PC= */
2074 expect ("=");
2075
2076#ifdef GDB_TARGET_IS_SH
2077 wanted_nopc = want_nopc;
2078 if (TARGET_ARCHITECTURE->arch == bfd_arch_sh)
2079 switch (TARGET_ARCHITECTURE->mach)
2080 {
2081 case bfd_mach_sh3:
2082 case bfd_mach_sh3e:
7a292a7a 2083 case bfd_mach_sh4:
c906108c
SS
2084 wanted_nopc = want_sh3_nopc;
2085 }
2086#else
2087 if (h8300smode)
2088 wanted_nopc = want_nopc_h8300s;
2089 else
2090 wanted_nopc = want_nopc_h8300h;
2091#endif
2092 fetch_regs_from_dump (gch, wanted_nopc);
2093
2094 /* And supply the extra ones the simulator uses */
2095 for (regno = NUM_REALREGS; regno < NUM_REGS; regno++)
2096 {
2097 int buf = 0;
2098 supply_register (regno, (char *) &buf);
2099 }
2100
2101 stop_reason = why_stop ();
2102 expect_full_prompt ();
2103
2104 status->kind = TARGET_WAITKIND_STOPPED;
2105 status->value.sig = TARGET_SIGNAL_TRAP;
2106
2107 switch (stop_reason)
2108 {
2109 case 1: /* Breakpoint */
2110 write_pc (read_pc ()); /* PC is always off by 2 for breakpoints */
2111 status->value.sig = TARGET_SIGNAL_TRAP;
2112 break;
2113 case 0: /* Single step */
2114 status->value.sig = TARGET_SIGNAL_TRAP;
2115 break;
2116 case 2: /* Interrupt */
2117 if (had_sleep)
2118 {
2119 status->value.sig = TARGET_SIGNAL_TRAP;
2120 sub2_from_pc ();
2121 }
2122 else
2123 {
2124 status->value.sig = TARGET_SIGNAL_INT;
2125 }
2126 break;
2127 case 3:
2128 break;
2129 case 4:
2130 printf_unfiltered ("a cycle address error?\n");
2131 status->value.sig = TARGET_SIGNAL_UNKNOWN;
2132 break;
2133 case 5:
2134 status->value.sig = TARGET_SIGNAL_ILL;
2135 break;
2136 case 6:
2137 status->value.sig = TARGET_SIGNAL_SEGV;
2138 break;
2139 case 7: /* Anything else (NITEMS + 1) */
2140 printf_unfiltered ("a write protect error?\n");
2141 status->value.sig = TARGET_SIGNAL_UNKNOWN;
2142 break;
2143 default:
2144 /* Get the user's attention - this should never happen. */
2145 abort ();
2146 }
2147
2148 return 0;
2149}
2150
2151/* Stop the running program. */
2152
2153static void
2154e7000_stop ()
2155{
2156 /* Sending a ^C is supposed to stop the running program. */
2157 putchar_e7000 (CTRLC);
2158}
2159
2160/* Define the target subroutine names. */
2161
2162struct target_ops e7000_ops ;
2163
2164static void
2165init_e7000_ops(void)
2166{
2167 e7000_ops.to_shortname = "e7000";
2168 e7000_ops.to_longname = "Remote Hitachi e7000 target";
2169 e7000_ops.to_doc = "Use a remote Hitachi e7000 ICE connected by a serial line;\n\
2170or a network connection.\n\
2171Arguments are the name of the device for the serial line,\n\
2172the speed to connect at in bits per second.\n\
2173eg\n\
2174target e7000 /dev/ttya 9600\n\
2175target e7000 foobar" ;
2176 e7000_ops.to_open = e7000_open;
2177 e7000_ops.to_close = e7000_close;
2178 e7000_ops.to_attach = 0;
2179 e7000_ops.to_post_attach = NULL;
2180 e7000_ops.to_require_attach = NULL;
2181 e7000_ops.to_detach = e7000_detach;
2182 e7000_ops.to_require_detach = NULL;
2183 e7000_ops.to_resume = e7000_resume;
2184 e7000_ops.to_wait = e7000_wait;
2185 e7000_ops.to_post_wait = NULL;
2186 e7000_ops.to_fetch_registers = e7000_fetch_register;
2187 e7000_ops.to_store_registers = e7000_store_register;
2188 e7000_ops.to_prepare_to_store = e7000_prepare_to_store;
2189 e7000_ops.to_xfer_memory = e7000_xfer_inferior_memory;
2190 e7000_ops.to_files_info = e7000_files_info;
2191 e7000_ops.to_insert_breakpoint = e7000_insert_breakpoint;
2192 e7000_ops.to_remove_breakpoint = e7000_remove_breakpoint;
2193 e7000_ops.to_terminal_init = 0;
2194 e7000_ops.to_terminal_inferior = 0;
2195 e7000_ops.to_terminal_ours_for_output = 0;
2196 e7000_ops.to_terminal_ours = 0;
2197 e7000_ops.to_terminal_info = 0;
2198 e7000_ops.to_kill = e7000_kill;
2199 e7000_ops.to_load = e7000_load;
2200 e7000_ops.to_lookup_symbol = 0;
2201 e7000_ops.to_create_inferior = e7000_create_inferior;
2202 e7000_ops.to_post_startup_inferior = NULL;
2203 e7000_ops.to_acknowledge_created_inferior = NULL;
2204 e7000_ops.to_clone_and_follow_inferior = NULL;
2205 e7000_ops.to_post_follow_inferior_by_clone = NULL;
2206 e7000_ops.to_insert_fork_catchpoint = NULL;
2207 e7000_ops.to_remove_fork_catchpoint = NULL;
2208 e7000_ops.to_insert_vfork_catchpoint = NULL;
2209 e7000_ops.to_remove_vfork_catchpoint = NULL;
2210 e7000_ops.to_has_forked = NULL;
2211 e7000_ops.to_has_vforked = NULL;
2212 e7000_ops.to_can_follow_vfork_prior_to_exec = NULL;
2213 e7000_ops.to_post_follow_vfork = NULL;
2214 e7000_ops.to_insert_exec_catchpoint = NULL;
2215 e7000_ops.to_remove_exec_catchpoint = NULL;
2216 e7000_ops.to_has_execd = NULL;
2217 e7000_ops.to_reported_exec_events_per_exec_call = NULL;
2218 e7000_ops.to_has_exited = NULL;
2219 e7000_ops.to_mourn_inferior = e7000_mourn_inferior;
2220 e7000_ops.to_can_run = 0;
2221 e7000_ops.to_notice_signals = 0;
2222 e7000_ops.to_thread_alive = 0;
2223 e7000_ops.to_stop = e7000_stop;
2224 e7000_ops.to_pid_to_exec_file = NULL;
2225 e7000_ops.to_core_file_to_sym_file = NULL;
2226 e7000_ops.to_stratum = process_stratum;
2227 e7000_ops.DONT_USE = 0;
2228 e7000_ops.to_has_all_memory = 1;
2229 e7000_ops.to_has_memory = 1;
2230 e7000_ops.to_has_stack = 1;
2231 e7000_ops.to_has_registers = 1;
2232 e7000_ops.to_has_execution = 1;
2233 e7000_ops.to_sections = 0;
2234 e7000_ops.to_sections_end = 0;
2235 e7000_ops.to_magic = OPS_MAGIC;
2236};
2237
2238void
2239_initialize_remote_e7000 ()
2240{
2241 init_e7000_ops() ;
2242 add_target (&e7000_ops);
2243
2244 add_com ("e7000", class_obscure, e7000_command,
2245 "Send a command to the e7000 monitor.");
2246
2247 add_com ("ftplogin", class_obscure, e7000_login_command,
2248 "Login to machine and change to directory.");
2249
2250 add_com ("ftpload", class_obscure, e7000_ftp_command,
2251 "Fetch and load a file from previously described place.");
2252
2253 add_com ("drain", class_obscure, e7000_drain_command,
2254 "Drain pending e7000 text buffers.");
2255
2256 add_show_from_set (add_set_cmd ("usehardbreakpoints", no_class,
2257 var_integer, (char *)&use_hard_breakpoints,
2258 "Set use of hardware breakpoints for all breakpoints.\n", &setlist),
2259 &showlist);
2260}