* config/tc-hppa.c (pa_ip): Add args q, %, and |.
[deliverable/binutils-gdb.git] / gdb / remote-mips.c
1 /* Remote debugging interface for MIPS remote debugging protocol.
2 Copyright 1993, 1994, 1995 Free Software Foundation, Inc.
3 Contributed by Cygnus Support. Written by Ian Lance Taylor
4 <ian@cygnus.com>.
5
6 This file is part of GDB.
7
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA. */
22
23 #include "defs.h"
24 #include "inferior.h"
25 #include "bfd.h"
26 #include "symfile.h"
27 #include "wait.h"
28 #include "gdbcmd.h"
29 #include "gdbcore.h"
30 #include "serial.h"
31 #include "target.h"
32 #include "remote-utils.h"
33 #include "gdb_string.h"
34
35 #include <signal.h>
36 #include <sys/types.h>
37 #include <sys/stat.h>
38
39 /* Microsoft C's stat.h doesn't define all the POSIX file modes. */
40 #ifndef S_IROTH
41 #define S_IROTH S_IREAD
42 #endif
43
44 extern void mips_set_processor_type_command PARAMS ((char *, int));
45 \f
46
47 /* Breakpoint types. Values 0, 1, and 2 must agree with the watch
48 types passed by breakpoint.c to target_insert_watchpoint.
49 Value 3 is our own invention, and is used for ordinary instruction
50 breakpoints. Value 4 is used to mark an unused watchpoint in tables. */
51 enum break_type
52 {
53 BREAK_WRITE, /* 0 */
54 BREAK_READ, /* 1 */
55 BREAK_ACCESS, /* 2 */
56 BREAK_FETCH, /* 3 */
57 BREAK_UNUSED /* 4 */
58 };
59
60 /* Prototypes for local functions. */
61
62 static int mips_readchar PARAMS ((int timeout));
63
64 static int mips_receive_header PARAMS ((unsigned char *hdr, int *pgarbage,
65 int ch, int timeout));
66
67 static int mips_receive_trailer PARAMS ((unsigned char *trlr, int *pgarbage,
68 int *pch, int timeout));
69
70 static int mips_cksum PARAMS ((const unsigned char *hdr,
71 const unsigned char *data,
72 int len));
73
74 static void mips_send_packet PARAMS ((const char *s, int get_ack));
75
76 static void mips_send_command PARAMS ((const char *cmd, int prompt));
77
78 static int mips_receive_packet PARAMS ((char *buff, int throw_error,
79 int timeout));
80
81 static CORE_ADDR mips_request PARAMS ((int cmd, CORE_ADDR addr,
82 CORE_ADDR data, int *perr, int timeout,
83 char *buff));
84
85 static void mips_initialize PARAMS ((void));
86
87 static void mips_open PARAMS ((char *name, int from_tty));
88
89 static void pmon_open PARAMS ((char *name, int from_tty));
90
91 static void ddb_open PARAMS ((char *name, int from_tty));
92
93 static void lsi_open PARAMS ((char *name, int from_tty));
94
95 static void mips_close PARAMS ((int quitting));
96
97 static void mips_detach PARAMS ((char *args, int from_tty));
98
99 static void mips_resume PARAMS ((int pid, int step,
100 enum target_signal siggnal));
101
102 static int mips_wait PARAMS ((int pid, struct target_waitstatus * status));
103
104 static int mips_map_regno PARAMS ((int regno));
105
106 static void mips_fetch_registers PARAMS ((int regno));
107
108 static void mips_prepare_to_store PARAMS ((void));
109
110 static void mips_store_registers PARAMS ((int regno));
111
112 static unsigned int mips_fetch_word PARAMS ((CORE_ADDR addr));
113
114 static int mips_store_word PARAMS ((CORE_ADDR addr, unsigned int value,
115 char *old_contents));
116
117 static int mips_xfer_memory PARAMS ((CORE_ADDR memaddr, char *myaddr, int len,
118 int write, struct target_ops * ignore));
119
120 static void mips_files_info PARAMS ((struct target_ops * ignore));
121
122 static void mips_create_inferior PARAMS ((char *execfile, char *args,
123 char **env));
124
125 static void mips_mourn_inferior PARAMS ((void));
126
127 static int pmon_makeb64 PARAMS ((unsigned long v, char *p, int n, int *chksum));
128
129 static int pmon_zeroset PARAMS ((int recsize, char **buff, int *amount,
130 unsigned int *chksum));
131
132 static int pmon_checkset PARAMS ((int recsize, char **buff, int *value));
133
134 static void pmon_make_fastrec PARAMS ((char **outbuf, unsigned char *inbuf,
135 int *inptr, int inamount, int *recsize,
136 unsigned int *csum, unsigned int *zerofill));
137
138 static int pmon_check_ack PARAMS ((char *mesg));
139
140 static void pmon_start_download PARAMS ((void));
141
142 static void pmon_end_download PARAMS ((int final, int bintotal));
143
144 static void pmon_download PARAMS ((char *buffer, int length));
145
146 static void pmon_load_fast PARAMS ((char *file));
147
148 static void mips_load PARAMS ((char *file, int from_tty));
149
150 static int mips_make_srec PARAMS ((char *buffer, int type, CORE_ADDR memaddr,
151 unsigned char *myaddr, int len));
152
153 static int set_breakpoint PARAMS ((CORE_ADDR addr, int len,
154 enum break_type type));
155
156 static int clear_breakpoint PARAMS ((CORE_ADDR addr, int len,
157 enum break_type type));
158
159 static int common_breakpoint PARAMS ((int set, CORE_ADDR addr, int len,
160 enum break_type type));
161
162 /* Forward declarations. */
163 extern struct target_ops mips_ops;
164 extern struct target_ops pmon_ops;
165 extern struct target_ops ddb_ops;
166 \f/* *INDENT-OFF* */
167 /* The MIPS remote debugging interface is built on top of a simple
168 packet protocol. Each packet is organized as follows:
169
170 SYN The first character is always a SYN (ASCII 026, or ^V). SYN
171 may not appear anywhere else in the packet. Any time a SYN is
172 seen, a new packet should be assumed to have begun.
173
174 TYPE_LEN
175 This byte contains the upper five bits of the logical length
176 of the data section, plus a single bit indicating whether this
177 is a data packet or an acknowledgement. The documentation
178 indicates that this bit is 1 for a data packet, but the actual
179 board uses 1 for an acknowledgement. The value of the byte is
180 0x40 + (ack ? 0x20 : 0) + (len >> 6)
181 (we always have 0 <= len < 1024). Acknowledgement packets do
182 not carry data, and must have a data length of 0.
183
184 LEN1 This byte contains the lower six bits of the logical length of
185 the data section. The value is
186 0x40 + (len & 0x3f)
187
188 SEQ This byte contains the six bit sequence number of the packet.
189 The value is
190 0x40 + seq
191 An acknowlegment packet contains the sequence number of the
192 packet being acknowledged plus 1 modulo 64. Data packets are
193 transmitted in sequence. There may only be one outstanding
194 unacknowledged data packet at a time. The sequence numbers
195 are independent in each direction. If an acknowledgement for
196 the previous packet is received (i.e., an acknowledgement with
197 the sequence number of the packet just sent) the packet just
198 sent should be retransmitted. If no acknowledgement is
199 received within a timeout period, the packet should be
200 retransmitted. This has an unfortunate failure condition on a
201 high-latency line, as a delayed acknowledgement may lead to an
202 endless series of duplicate packets.
203
204 DATA The actual data bytes follow. The following characters are
205 escaped inline with DLE (ASCII 020, or ^P):
206 SYN (026) DLE S
207 DLE (020) DLE D
208 ^C (003) DLE C
209 ^S (023) DLE s
210 ^Q (021) DLE q
211 The additional DLE characters are not counted in the logical
212 length stored in the TYPE_LEN and LEN1 bytes.
213
214 CSUM1
215 CSUM2
216 CSUM3
217 These bytes contain an 18 bit checksum of the complete
218 contents of the packet excluding the SEQ byte and the
219 CSUM[123] bytes. The checksum is simply the twos complement
220 addition of all the bytes treated as unsigned characters. The
221 values of the checksum bytes are:
222 CSUM1: 0x40 + ((cksum >> 12) & 0x3f)
223 CSUM2: 0x40 + ((cksum >> 6) & 0x3f)
224 CSUM3: 0x40 + (cksum & 0x3f)
225
226 It happens that the MIPS remote debugging protocol always
227 communicates with ASCII strings. Because of this, this
228 implementation doesn't bother to handle the DLE quoting mechanism,
229 since it will never be required. */
230 /* *INDENT-ON* */
231
232
233 /* The SYN character which starts each packet. */
234 #define SYN '\026'
235
236 /* The 0x40 used to offset each packet (this value ensures that all of
237 the header and trailer bytes, other than SYN, are printable ASCII
238 characters). */
239 #define HDR_OFFSET 0x40
240
241 /* The indices of the bytes in the packet header. */
242 #define HDR_INDX_SYN 0
243 #define HDR_INDX_TYPE_LEN 1
244 #define HDR_INDX_LEN1 2
245 #define HDR_INDX_SEQ 3
246 #define HDR_LENGTH 4
247
248 /* The data/ack bit in the TYPE_LEN header byte. */
249 #define TYPE_LEN_DA_BIT 0x20
250 #define TYPE_LEN_DATA 0
251 #define TYPE_LEN_ACK TYPE_LEN_DA_BIT
252
253 /* How to compute the header bytes. */
254 #define HDR_SET_SYN(data, len, seq) (SYN)
255 #define HDR_SET_TYPE_LEN(data, len, seq) \
256 (HDR_OFFSET \
257 + ((data) ? TYPE_LEN_DATA : TYPE_LEN_ACK) \
258 + (((len) >> 6) & 0x1f))
259 #define HDR_SET_LEN1(data, len, seq) (HDR_OFFSET + ((len) & 0x3f))
260 #define HDR_SET_SEQ(data, len, seq) (HDR_OFFSET + (seq))
261
262 /* Check that a header byte is reasonable. */
263 #define HDR_CHECK(ch) (((ch) & HDR_OFFSET) == HDR_OFFSET)
264
265 /* Get data from the header. These macros evaluate their argument
266 multiple times. */
267 #define HDR_IS_DATA(hdr) \
268 (((hdr)[HDR_INDX_TYPE_LEN] & TYPE_LEN_DA_BIT) == TYPE_LEN_DATA)
269 #define HDR_GET_LEN(hdr) \
270 ((((hdr)[HDR_INDX_TYPE_LEN] & 0x1f) << 6) + (((hdr)[HDR_INDX_LEN1] & 0x3f)))
271 #define HDR_GET_SEQ(hdr) ((unsigned int)(hdr)[HDR_INDX_SEQ] & 0x3f)
272
273 /* The maximum data length. */
274 #define DATA_MAXLEN 1023
275
276 /* The trailer offset. */
277 #define TRLR_OFFSET HDR_OFFSET
278
279 /* The indices of the bytes in the packet trailer. */
280 #define TRLR_INDX_CSUM1 0
281 #define TRLR_INDX_CSUM2 1
282 #define TRLR_INDX_CSUM3 2
283 #define TRLR_LENGTH 3
284
285 /* How to compute the trailer bytes. */
286 #define TRLR_SET_CSUM1(cksum) (TRLR_OFFSET + (((cksum) >> 12) & 0x3f))
287 #define TRLR_SET_CSUM2(cksum) (TRLR_OFFSET + (((cksum) >> 6) & 0x3f))
288 #define TRLR_SET_CSUM3(cksum) (TRLR_OFFSET + (((cksum) ) & 0x3f))
289
290 /* Check that a trailer byte is reasonable. */
291 #define TRLR_CHECK(ch) (((ch) & TRLR_OFFSET) == TRLR_OFFSET)
292
293 /* Get data from the trailer. This evaluates its argument multiple
294 times. */
295 #define TRLR_GET_CKSUM(trlr) \
296 ((((trlr)[TRLR_INDX_CSUM1] & 0x3f) << 12) \
297 + (((trlr)[TRLR_INDX_CSUM2] & 0x3f) << 6) \
298 + ((trlr)[TRLR_INDX_CSUM3] & 0x3f))
299
300 /* The sequence number modulos. */
301 #define SEQ_MODULOS (64)
302
303 /* PMON commands to load from the serial port or UDP socket. */
304 #define LOAD_CMD "load -b -s tty0\r"
305 #define LOAD_CMD_UDP "load -b -s udp\r"
306
307 /* The target vectors for the four different remote MIPS targets.
308 These are initialized with code in _initialize_remote_mips instead
309 of static initializers, to make it easier to extend the target_ops
310 vector later. */
311 struct target_ops mips_ops, pmon_ops, ddb_ops, lsi_ops;
312
313 enum mips_monitor_type
314 {
315 /* IDT/SIM monitor being used: */
316 MON_IDT,
317 /* PMON monitor being used: */
318 MON_PMON, /* 3.0.83 [COGENT,EB,FP,NET] Algorithmics Ltd. Nov 9 1995 17:19:50 */
319 MON_DDB, /* 2.7.473 [DDBVR4300,EL,FP,NET] Risq Modular Systems, Thu Jun 6 09:28:40 PDT 1996 */
320 MON_LSI, /* 4.3.12 [EB,FP], LSI LOGIC Corp. Tue Feb 25 13:22:14 1997 */
321 /* Last and unused value, for sizing vectors, etc. */
322 MON_LAST
323 };
324 static enum mips_monitor_type mips_monitor = MON_LAST;
325
326 /* The monitor prompt text. If the user sets the PMON prompt
327 to some new value, the GDB `set monitor-prompt' command must also
328 be used to inform GDB about the expected prompt. Otherwise, GDB
329 will not be able to connect to PMON in mips_initialize().
330 If the `set monitor-prompt' command is not used, the expected
331 default prompt will be set according the target:
332 target prompt
333 ----- -----
334 pmon PMON>
335 ddb NEC010>
336 lsi PMON>
337 */
338 static char *mips_monitor_prompt;
339
340 /* Set to 1 if the target is open. */
341 static int mips_is_open;
342
343 /* Currently active target description (if mips_is_open == 1) */
344 static struct target_ops *current_ops;
345
346 /* Set to 1 while the connection is being initialized. */
347 static int mips_initializing;
348
349 /* Set to 1 while the connection is being brought down. */
350 static int mips_exiting;
351
352 /* The next sequence number to send. */
353 static unsigned int mips_send_seq;
354
355 /* The next sequence number we expect to receive. */
356 static unsigned int mips_receive_seq;
357
358 /* The time to wait before retransmitting a packet, in seconds. */
359 static int mips_retransmit_wait = 3;
360
361 /* The number of times to try retransmitting a packet before giving up. */
362 static int mips_send_retries = 10;
363
364 /* The number of garbage characters to accept when looking for an
365 SYN for the next packet. */
366 static int mips_syn_garbage = 1050;
367
368 /* The time to wait for a packet, in seconds. */
369 static int mips_receive_wait = 5;
370
371 /* Set if we have sent a packet to the board but have not yet received
372 a reply. */
373 static int mips_need_reply = 0;
374
375 /* Handle used to access serial I/O stream. */
376 static serial_t mips_desc;
377
378 /* UDP handle used to download files to target. */
379 static serial_t udp_desc;
380 static int udp_in_use;
381
382 /* TFTP filename used to download files to DDB board, in the form
383 host:filename. */
384 static char *tftp_name; /* host:filename */
385 static char *tftp_localname; /* filename portion of above */
386 static int tftp_in_use;
387 static FILE *tftp_file;
388
389 /* Counts the number of times the user tried to interrupt the target (usually
390 via ^C. */
391 static int interrupt_count;
392
393 /* If non-zero, means that the target is running. */
394 static int mips_wait_flag = 0;
395
396 /* If non-zero, monitor supports breakpoint commands. */
397 static monitor_supports_breakpoints = 0;
398
399 /* Data cache header. */
400
401 #if 0 /* not used (yet?) */
402 static DCACHE *mips_dcache;
403 #endif
404
405 /* Non-zero means that we've just hit a read or write watchpoint */
406 static int hit_watchpoint;
407
408 /* Table of breakpoints/watchpoints (used only on LSI PMON target).
409 The table is indexed by a breakpoint number, which is an integer
410 from 0 to 255 returned by the LSI PMON when a breakpoint is set.
411 */
412 #define MAX_LSI_BREAKPOINTS 256
413 struct lsi_breakpoint_info
414 {
415 enum break_type type; /* type of breakpoint */
416 CORE_ADDR addr; /* address of breakpoint */
417 int len; /* length of region being watched */
418 unsigned long value; /* value to watch */
419 }
420 lsi_breakpoints[MAX_LSI_BREAKPOINTS];
421
422 /* Error/warning codes returned by LSI PMON for breakpoint commands.
423 Warning values may be ORed together; error values may not. */
424 #define W_WARN 0x100 /* This bit is set if the error code is a warning */
425 #define W_MSK 0x101 /* warning: Range feature is supported via mask */
426 #define W_VAL 0x102 /* warning: Value check is not supported in hardware */
427 #define W_QAL 0x104 /* warning: Requested qualifiers are not supported in hardware */
428
429 #define E_ERR 0x200 /* This bit is set if the error code is an error */
430 #define E_BPT 0x200 /* error: No such breakpoint number */
431 #define E_RGE 0x201 /* error: Range is not supported */
432 #define E_QAL 0x202 /* error: The requested qualifiers can not be used */
433 #define E_OUT 0x203 /* error: Out of hardware resources */
434 #define E_NON 0x204 /* error: Hardware breakpoint not supported */
435
436 struct lsi_error
437 {
438 int code; /* error code */
439 char *string; /* string associated with this code */
440 };
441
442 struct lsi_error lsi_warning_table[] =
443 {
444 {W_MSK, "Range feature is supported via mask"},
445 {W_VAL, "Value check is not supported in hardware"},
446 {W_QAL, "Requested qualifiers are not supported in hardware"},
447 {0, NULL}
448 };
449
450 struct lsi_error lsi_error_table[] =
451 {
452 {E_BPT, "No such breakpoint number"},
453 {E_RGE, "Range is not supported"},
454 {E_QAL, "The requested qualifiers can not be used"},
455 {E_OUT, "Out of hardware resources"},
456 {E_NON, "Hardware breakpoint not supported"},
457 {0, NULL}
458 };
459
460 /* Set to 1 with the 'set monitor-warnings' command to enable printing
461 of warnings returned by PMON when hardware breakpoints are used. */
462 static int monitor_warnings;
463
464
465 static void
466 close_ports ()
467 {
468 mips_is_open = 0;
469 SERIAL_CLOSE (mips_desc);
470
471 if (udp_in_use)
472 {
473 SERIAL_CLOSE (udp_desc);
474 udp_in_use = 0;
475 }
476 tftp_in_use = 0;
477 }
478
479 /* Handle low-level error that we can't recover from. Note that just
480 error()ing out from target_wait or some such low-level place will cause
481 all hell to break loose--the rest of GDB will tend to get left in an
482 inconsistent state. */
483
484 static NORETURN void
485 mips_error (char *string,...)
486 {
487 va_list args;
488
489 va_start (args, string);
490
491 target_terminal_ours ();
492 wrap_here (""); /* Force out any buffered output */
493 gdb_flush (gdb_stdout);
494 if (error_pre_print)
495 fprintf_filtered (gdb_stderr, error_pre_print);
496 vfprintf_filtered (gdb_stderr, string, args);
497 fprintf_filtered (gdb_stderr, "\n");
498 va_end (args);
499 gdb_flush (gdb_stderr);
500
501 /* Clean up in such a way that mips_close won't try to talk to the
502 board (it almost surely won't work since we weren't able to talk to
503 it). */
504 close_ports ();
505
506 printf_unfiltered ("Ending remote MIPS debugging.\n");
507 target_mourn_inferior ();
508
509 return_to_top_level (RETURN_ERROR);
510 }
511
512 /* putc_readable - print a character, displaying non-printable chars in
513 ^x notation or in hex. */
514
515 static void
516 fputc_readable (ch, file)
517 int ch;
518 struct gdb_file *file;
519 {
520 if (ch == '\n')
521 fputc_unfiltered ('\n', file);
522 else if (ch == '\r')
523 fprintf_unfiltered (file, "\\r");
524 else if (ch < 0x20) /* ASCII control character */
525 fprintf_unfiltered (file, "^%c", ch + '@');
526 else if (ch >= 0x7f) /* non-ASCII characters (rubout or greater) */
527 fprintf_unfiltered (file, "[%02x]", ch & 0xff);
528 else
529 fputc_unfiltered (ch, file);
530 }
531
532
533 /* puts_readable - print a string, displaying non-printable chars in
534 ^x notation or in hex. */
535
536 static void
537 fputs_readable (string, file)
538 char *string;
539 struct gdb_file *file;
540 {
541 int c;
542
543 while ((c = *string++) != '\0')
544 fputc_readable (c, file);
545 }
546
547
548 /* Wait until STRING shows up in mips_desc. Returns 1 if successful, else 0 if
549 timed out. TIMEOUT specifies timeout value in seconds.
550 */
551
552 int
553 mips_expect_timeout (string, timeout)
554 char *string;
555 int timeout;
556 {
557 char *p = string;
558
559 if (remote_debug)
560 {
561 fprintf_unfiltered (gdb_stdlog, "Expected \"");
562 fputs_readable (string, gdb_stdlog);
563 fprintf_unfiltered (gdb_stdlog, "\", got \"");
564 }
565
566 immediate_quit = 1;
567 while (1)
568 {
569 int c;
570
571 /* Must use SERIAL_READCHAR here cuz mips_readchar would get confused if we
572 were waiting for the mips_monitor_prompt... */
573
574 c = SERIAL_READCHAR (mips_desc, timeout);
575
576 if (c == SERIAL_TIMEOUT)
577 {
578 if (remote_debug)
579 fprintf_unfiltered (gdb_stdlog, "\": FAIL\n");
580 return 0;
581 }
582
583 if (remote_debug)
584 fputc_readable (c, gdb_stdlog);
585
586 if (c == *p++)
587 {
588 if (*p == '\0')
589 {
590 immediate_quit = 0;
591 if (remote_debug)
592 fprintf_unfiltered (gdb_stdlog, "\": OK\n");
593 return 1;
594 }
595 }
596 else
597 {
598 p = string;
599 if (c == *p)
600 p++;
601 }
602 }
603 }
604
605 /* Wait until STRING shows up in mips_desc. Returns 1 if successful, else 0 if
606 timed out. The timeout value is hard-coded to 2 seconds. Use
607 mips_expect_timeout if a different timeout value is needed.
608 */
609
610 int
611 mips_expect (string)
612 char *string;
613 {
614 return mips_expect_timeout (string, 2);
615 }
616
617 /* Read the required number of characters into the given buffer (which
618 is assumed to be large enough). The only failure is a timeout. */
619 int
620 mips_getstring (string, n)
621 char *string;
622 int n;
623 {
624 char *p = string;
625 int c;
626
627 immediate_quit = 1;
628 while (n > 0)
629 {
630 c = SERIAL_READCHAR (mips_desc, 2);
631
632 if (c == SERIAL_TIMEOUT)
633 {
634 fprintf_unfiltered (gdb_stderr,
635 "Failed to read %d characters from target (TIMEOUT)\n", n);
636 return 0;
637 }
638
639 *p++ = c;
640 n--;
641 }
642
643 return 1;
644 }
645
646 /* Read a character from the remote, aborting on error. Returns
647 SERIAL_TIMEOUT on timeout (since that's what SERIAL_READCHAR
648 returns). FIXME: If we see the string mips_monitor_prompt from
649 the board, then we are debugging on the main console port, and we
650 have somehow dropped out of remote debugging mode. In this case,
651 we automatically go back in to remote debugging mode. This is a
652 hack, put in because I can't find any way for a program running on
653 the remote board to terminate without also ending remote debugging
654 mode. I assume users won't have any trouble with this; for one
655 thing, the IDT documentation generally assumes that the remote
656 debugging port is not the console port. This is, however, very
657 convenient for DejaGnu when you only have one connected serial
658 port. */
659
660 static int
661 mips_readchar (timeout)
662 int timeout;
663 {
664 int ch;
665 static int state = 0;
666 int mips_monitor_prompt_len = strlen (mips_monitor_prompt);
667
668 {
669 int i;
670
671 i = timeout;
672 if (i == -1 && watchdog > 0)
673 i = watchdog;
674 }
675
676 if (state == mips_monitor_prompt_len)
677 timeout = 1;
678 ch = SERIAL_READCHAR (mips_desc, timeout);
679
680 if (ch == SERIAL_TIMEOUT && timeout == -1) /* Watchdog went off */
681 {
682 target_mourn_inferior ();
683 error ("Watchdog has expired. Target detached.\n");
684 }
685
686 if (ch == SERIAL_EOF)
687 mips_error ("End of file from remote");
688 if (ch == SERIAL_ERROR)
689 mips_error ("Error reading from remote: %s", safe_strerror (errno));
690 if (remote_debug > 1)
691 {
692 /* Don't use _filtered; we can't deal with a QUIT out of
693 target_wait, and I think this might be called from there. */
694 if (ch != SERIAL_TIMEOUT)
695 fprintf_unfiltered (gdb_stdlog, "Read '%c' %d 0x%x\n", ch, ch, ch);
696 else
697 fprintf_unfiltered (gdb_stdlog, "Timed out in read\n");
698 }
699
700 /* If we have seen mips_monitor_prompt and we either time out, or
701 we see a @ (which was echoed from a packet we sent), reset the
702 board as described above. The first character in a packet after
703 the SYN (which is not echoed) is always an @ unless the packet is
704 more than 64 characters long, which ours never are. */
705 if ((ch == SERIAL_TIMEOUT || ch == '@')
706 && state == mips_monitor_prompt_len
707 && !mips_initializing
708 && !mips_exiting)
709 {
710 if (remote_debug > 0)
711 /* Don't use _filtered; we can't deal with a QUIT out of
712 target_wait, and I think this might be called from there. */
713 fprintf_unfiltered (gdb_stdlog, "Reinitializing MIPS debugging mode\n");
714
715 mips_need_reply = 0;
716 mips_initialize ();
717
718 state = 0;
719
720 /* At this point, about the only thing we can do is abort the command
721 in progress and get back to command level as quickly as possible. */
722
723 error ("Remote board reset, debug protocol re-initialized.");
724 }
725
726 if (ch == mips_monitor_prompt[state])
727 ++state;
728 else
729 state = 0;
730
731 return ch;
732 }
733
734 /* Get a packet header, putting the data in the supplied buffer.
735 PGARBAGE is a pointer to the number of garbage characters received
736 so far. CH is the last character received. Returns 0 for success,
737 or -1 for timeout. */
738
739 static int
740 mips_receive_header (hdr, pgarbage, ch, timeout)
741 unsigned char *hdr;
742 int *pgarbage;
743 int ch;
744 int timeout;
745 {
746 int i;
747
748 while (1)
749 {
750 /* Wait for a SYN. mips_syn_garbage is intended to prevent
751 sitting here indefinitely if the board sends us one garbage
752 character per second. ch may already have a value from the
753 last time through the loop. */
754 while (ch != SYN)
755 {
756 ch = mips_readchar (timeout);
757 if (ch == SERIAL_TIMEOUT)
758 return -1;
759 if (ch != SYN)
760 {
761 /* Printing the character here lets the user of gdb see
762 what the program is outputting, if the debugging is
763 being done on the console port. Don't use _filtered;
764 we can't deal with a QUIT out of target_wait. */
765 if (!mips_initializing || remote_debug > 0)
766 {
767 fputc_readable (ch, gdb_stdlog);
768 gdb_flush (gdb_stdlog);
769 }
770
771 ++*pgarbage;
772 if (mips_syn_garbage > 0
773 && *pgarbage > mips_syn_garbage)
774 mips_error ("Debug protocol failure: more than %d characters before a sync.",
775 mips_syn_garbage);
776 }
777 }
778
779 /* Get the packet header following the SYN. */
780 for (i = 1; i < HDR_LENGTH; i++)
781 {
782 ch = mips_readchar (timeout);
783 if (ch == SERIAL_TIMEOUT)
784 return -1;
785 /* Make sure this is a header byte. */
786 if (ch == SYN || !HDR_CHECK (ch))
787 break;
788
789 hdr[i] = ch;
790 }
791
792 /* If we got the complete header, we can return. Otherwise we
793 loop around and keep looking for SYN. */
794 if (i >= HDR_LENGTH)
795 return 0;
796 }
797 }
798
799 /* Get a packet header, putting the data in the supplied buffer.
800 PGARBAGE is a pointer to the number of garbage characters received
801 so far. The last character read is returned in *PCH. Returns 0
802 for success, -1 for timeout, -2 for error. */
803
804 static int
805 mips_receive_trailer (trlr, pgarbage, pch, timeout)
806 unsigned char *trlr;
807 int *pgarbage;
808 int *pch;
809 int timeout;
810 {
811 int i;
812 int ch;
813
814 for (i = 0; i < TRLR_LENGTH; i++)
815 {
816 ch = mips_readchar (timeout);
817 *pch = ch;
818 if (ch == SERIAL_TIMEOUT)
819 return -1;
820 if (!TRLR_CHECK (ch))
821 return -2;
822 trlr[i] = ch;
823 }
824 return 0;
825 }
826
827 /* Get the checksum of a packet. HDR points to the packet header.
828 DATA points to the packet data. LEN is the length of DATA. */
829
830 static int
831 mips_cksum (hdr, data, len)
832 const unsigned char *hdr;
833 const unsigned char *data;
834 int len;
835 {
836 register const unsigned char *p;
837 register int c;
838 register int cksum;
839
840 cksum = 0;
841
842 /* The initial SYN is not included in the checksum. */
843 c = HDR_LENGTH - 1;
844 p = hdr + 1;
845 while (c-- != 0)
846 cksum += *p++;
847
848 c = len;
849 p = data;
850 while (c-- != 0)
851 cksum += *p++;
852
853 return cksum;
854 }
855
856 /* Send a packet containing the given ASCII string. */
857
858 static void
859 mips_send_packet (s, get_ack)
860 const char *s;
861 int get_ack;
862 {
863 /* unsigned */ int len;
864 unsigned char *packet;
865 register int cksum;
866 int try;
867
868 len = strlen (s);
869 if (len > DATA_MAXLEN)
870 mips_error ("MIPS protocol data packet too long: %s", s);
871
872 packet = (unsigned char *) alloca (HDR_LENGTH + len + TRLR_LENGTH + 1);
873
874 packet[HDR_INDX_SYN] = HDR_SET_SYN (1, len, mips_send_seq);
875 packet[HDR_INDX_TYPE_LEN] = HDR_SET_TYPE_LEN (1, len, mips_send_seq);
876 packet[HDR_INDX_LEN1] = HDR_SET_LEN1 (1, len, mips_send_seq);
877 packet[HDR_INDX_SEQ] = HDR_SET_SEQ (1, len, mips_send_seq);
878
879 memcpy (packet + HDR_LENGTH, s, len);
880
881 cksum = mips_cksum (packet, packet + HDR_LENGTH, len);
882 packet[HDR_LENGTH + len + TRLR_INDX_CSUM1] = TRLR_SET_CSUM1 (cksum);
883 packet[HDR_LENGTH + len + TRLR_INDX_CSUM2] = TRLR_SET_CSUM2 (cksum);
884 packet[HDR_LENGTH + len + TRLR_INDX_CSUM3] = TRLR_SET_CSUM3 (cksum);
885
886 /* Increment the sequence number. This will set mips_send_seq to
887 the sequence number we expect in the acknowledgement. */
888 mips_send_seq = (mips_send_seq + 1) % SEQ_MODULOS;
889
890 /* We can only have one outstanding data packet, so we just wait for
891 the acknowledgement here. Keep retransmitting the packet until
892 we get one, or until we've tried too many times. */
893 for (try = 0; try < mips_send_retries; try++)
894 {
895 int garbage;
896 int ch;
897
898 if (remote_debug > 0)
899 {
900 /* Don't use _filtered; we can't deal with a QUIT out of
901 target_wait, and I think this might be called from there. */
902 packet[HDR_LENGTH + len + TRLR_LENGTH] = '\0';
903 fprintf_unfiltered (gdb_stdlog, "Writing \"%s\"\n", packet + 1);
904 }
905
906 if (SERIAL_WRITE (mips_desc, packet,
907 HDR_LENGTH + len + TRLR_LENGTH) != 0)
908 mips_error ("write to target failed: %s", safe_strerror (errno));
909
910 if (!get_ack)
911 return;
912
913 garbage = 0;
914 ch = 0;
915 while (1)
916 {
917 unsigned char hdr[HDR_LENGTH + 1];
918 unsigned char trlr[TRLR_LENGTH + 1];
919 int err;
920 unsigned int seq;
921
922 /* Get the packet header. If we time out, resend the data
923 packet. */
924 err = mips_receive_header (hdr, &garbage, ch, mips_retransmit_wait);
925 if (err != 0)
926 break;
927
928 ch = 0;
929
930 /* If we get a data packet, assume it is a duplicate and
931 ignore it. FIXME: If the acknowledgement is lost, this
932 data packet may be the packet the remote sends after the
933 acknowledgement. */
934 if (HDR_IS_DATA (hdr))
935 {
936 int i;
937
938 /* Ignore any errors raised whilst attempting to ignore
939 packet. */
940
941 len = HDR_GET_LEN (hdr);
942
943 for (i = 0; i < len; i++)
944 {
945 int rch;
946
947 rch = mips_readchar (2);
948 if (rch == SYN)
949 {
950 ch = SYN;
951 break;
952 }
953 if (rch == SERIAL_TIMEOUT)
954 break;
955 /* ignore the character */
956 }
957
958 if (i == len)
959 (void) mips_receive_trailer (trlr, &garbage, &ch, 2);
960
961 /* We don't bother checking the checksum, or providing an
962 ACK to the packet. */
963 continue;
964 }
965
966 /* If the length is not 0, this is a garbled packet. */
967 if (HDR_GET_LEN (hdr) != 0)
968 continue;
969
970 /* Get the packet trailer. */
971 err = mips_receive_trailer (trlr, &garbage, &ch,
972 mips_retransmit_wait);
973
974 /* If we timed out, resend the data packet. */
975 if (err == -1)
976 break;
977
978 /* If we got a bad character, reread the header. */
979 if (err != 0)
980 continue;
981
982 /* If the checksum does not match the trailer checksum, this
983 is a bad packet; ignore it. */
984 if (mips_cksum (hdr, (unsigned char *) NULL, 0)
985 != TRLR_GET_CKSUM (trlr))
986 continue;
987
988 if (remote_debug > 0)
989 {
990 hdr[HDR_LENGTH] = '\0';
991 trlr[TRLR_LENGTH] = '\0';
992 /* Don't use _filtered; we can't deal with a QUIT out of
993 target_wait, and I think this might be called from there. */
994 fprintf_unfiltered (gdb_stdlog, "Got ack %d \"%s%s\"\n",
995 HDR_GET_SEQ (hdr), hdr + 1, trlr);
996 }
997
998 /* If this ack is for the current packet, we're done. */
999 seq = HDR_GET_SEQ (hdr);
1000 if (seq == mips_send_seq)
1001 return;
1002
1003 /* If this ack is for the last packet, resend the current
1004 packet. */
1005 if ((seq + 1) % SEQ_MODULOS == mips_send_seq)
1006 break;
1007
1008 /* Otherwise this is a bad ack; ignore it. Increment the
1009 garbage count to ensure that we do not stay in this loop
1010 forever. */
1011 ++garbage;
1012 }
1013 }
1014
1015 mips_error ("Remote did not acknowledge packet");
1016 }
1017
1018 /* Receive and acknowledge a packet, returning the data in BUFF (which
1019 should be DATA_MAXLEN + 1 bytes). The protocol documentation
1020 implies that only the sender retransmits packets, so this code just
1021 waits silently for a packet. It returns the length of the received
1022 packet. If THROW_ERROR is nonzero, call error() on errors. If not,
1023 don't print an error message and return -1. */
1024
1025 static int
1026 mips_receive_packet (buff, throw_error, timeout)
1027 char *buff;
1028 int throw_error;
1029 int timeout;
1030 {
1031 int ch;
1032 int garbage;
1033 int len;
1034 unsigned char ack[HDR_LENGTH + TRLR_LENGTH + 1];
1035 int cksum;
1036
1037 ch = 0;
1038 garbage = 0;
1039 while (1)
1040 {
1041 unsigned char hdr[HDR_LENGTH];
1042 unsigned char trlr[TRLR_LENGTH];
1043 int i;
1044 int err;
1045
1046 if (mips_receive_header (hdr, &garbage, ch, timeout) != 0)
1047 {
1048 if (throw_error)
1049 mips_error ("Timed out waiting for remote packet");
1050 else
1051 return -1;
1052 }
1053
1054 ch = 0;
1055
1056 /* An acknowledgement is probably a duplicate; ignore it. */
1057 if (!HDR_IS_DATA (hdr))
1058 {
1059 len = HDR_GET_LEN (hdr);
1060 /* Check if the length is valid for an ACK, we may aswell
1061 try and read the remainder of the packet: */
1062 if (len == 0)
1063 {
1064 /* Ignore the error condition, since we are going to
1065 ignore the packet anyway. */
1066 (void) mips_receive_trailer (trlr, &garbage, &ch, timeout);
1067 }
1068 /* Don't use _filtered; we can't deal with a QUIT out of
1069 target_wait, and I think this might be called from there. */
1070 if (remote_debug > 0)
1071 fprintf_unfiltered (gdb_stdlog, "Ignoring unexpected ACK\n");
1072 continue;
1073 }
1074
1075 len = HDR_GET_LEN (hdr);
1076 for (i = 0; i < len; i++)
1077 {
1078 int rch;
1079
1080 rch = mips_readchar (timeout);
1081 if (rch == SYN)
1082 {
1083 ch = SYN;
1084 break;
1085 }
1086 if (rch == SERIAL_TIMEOUT)
1087 {
1088 if (throw_error)
1089 mips_error ("Timed out waiting for remote packet");
1090 else
1091 return -1;
1092 }
1093 buff[i] = rch;
1094 }
1095
1096 if (i < len)
1097 {
1098 /* Don't use _filtered; we can't deal with a QUIT out of
1099 target_wait, and I think this might be called from there. */
1100 if (remote_debug > 0)
1101 fprintf_unfiltered (gdb_stdlog,
1102 "Got new SYN after %d chars (wanted %d)\n",
1103 i, len);
1104 continue;
1105 }
1106
1107 err = mips_receive_trailer (trlr, &garbage, &ch, timeout);
1108 if (err == -1)
1109 {
1110 if (throw_error)
1111 mips_error ("Timed out waiting for packet");
1112 else
1113 return -1;
1114 }
1115 if (err == -2)
1116 {
1117 /* Don't use _filtered; we can't deal with a QUIT out of
1118 target_wait, and I think this might be called from there. */
1119 if (remote_debug > 0)
1120 fprintf_unfiltered (gdb_stdlog, "Got SYN when wanted trailer\n");
1121 continue;
1122 }
1123
1124 /* If this is the wrong sequence number, ignore it. */
1125 if (HDR_GET_SEQ (hdr) != mips_receive_seq)
1126 {
1127 /* Don't use _filtered; we can't deal with a QUIT out of
1128 target_wait, and I think this might be called from there. */
1129 if (remote_debug > 0)
1130 fprintf_unfiltered (gdb_stdlog,
1131 "Ignoring sequence number %d (want %d)\n",
1132 HDR_GET_SEQ (hdr), mips_receive_seq);
1133 continue;
1134 }
1135
1136 if (mips_cksum (hdr, buff, len) == TRLR_GET_CKSUM (trlr))
1137 break;
1138
1139 if (remote_debug > 0)
1140 /* Don't use _filtered; we can't deal with a QUIT out of
1141 target_wait, and I think this might be called from there. */
1142 printf_unfiltered ("Bad checksum; data %d, trailer %d\n",
1143 mips_cksum (hdr, buff, len),
1144 TRLR_GET_CKSUM (trlr));
1145
1146 /* The checksum failed. Send an acknowledgement for the
1147 previous packet to tell the remote to resend the packet. */
1148 ack[HDR_INDX_SYN] = HDR_SET_SYN (0, 0, mips_receive_seq);
1149 ack[HDR_INDX_TYPE_LEN] = HDR_SET_TYPE_LEN (0, 0, mips_receive_seq);
1150 ack[HDR_INDX_LEN1] = HDR_SET_LEN1 (0, 0, mips_receive_seq);
1151 ack[HDR_INDX_SEQ] = HDR_SET_SEQ (0, 0, mips_receive_seq);
1152
1153 cksum = mips_cksum (ack, (unsigned char *) NULL, 0);
1154
1155 ack[HDR_LENGTH + TRLR_INDX_CSUM1] = TRLR_SET_CSUM1 (cksum);
1156 ack[HDR_LENGTH + TRLR_INDX_CSUM2] = TRLR_SET_CSUM2 (cksum);
1157 ack[HDR_LENGTH + TRLR_INDX_CSUM3] = TRLR_SET_CSUM3 (cksum);
1158
1159 if (remote_debug > 0)
1160 {
1161 ack[HDR_LENGTH + TRLR_LENGTH] = '\0';
1162 /* Don't use _filtered; we can't deal with a QUIT out of
1163 target_wait, and I think this might be called from there. */
1164 printf_unfiltered ("Writing ack %d \"%s\"\n", mips_receive_seq,
1165 ack + 1);
1166 }
1167
1168 if (SERIAL_WRITE (mips_desc, ack, HDR_LENGTH + TRLR_LENGTH) != 0)
1169 {
1170 if (throw_error)
1171 mips_error ("write to target failed: %s", safe_strerror (errno));
1172 else
1173 return -1;
1174 }
1175 }
1176
1177 if (remote_debug > 0)
1178 {
1179 buff[len] = '\0';
1180 /* Don't use _filtered; we can't deal with a QUIT out of
1181 target_wait, and I think this might be called from there. */
1182 printf_unfiltered ("Got packet \"%s\"\n", buff);
1183 }
1184
1185 /* We got the packet. Send an acknowledgement. */
1186 mips_receive_seq = (mips_receive_seq + 1) % SEQ_MODULOS;
1187
1188 ack[HDR_INDX_SYN] = HDR_SET_SYN (0, 0, mips_receive_seq);
1189 ack[HDR_INDX_TYPE_LEN] = HDR_SET_TYPE_LEN (0, 0, mips_receive_seq);
1190 ack[HDR_INDX_LEN1] = HDR_SET_LEN1 (0, 0, mips_receive_seq);
1191 ack[HDR_INDX_SEQ] = HDR_SET_SEQ (0, 0, mips_receive_seq);
1192
1193 cksum = mips_cksum (ack, (unsigned char *) NULL, 0);
1194
1195 ack[HDR_LENGTH + TRLR_INDX_CSUM1] = TRLR_SET_CSUM1 (cksum);
1196 ack[HDR_LENGTH + TRLR_INDX_CSUM2] = TRLR_SET_CSUM2 (cksum);
1197 ack[HDR_LENGTH + TRLR_INDX_CSUM3] = TRLR_SET_CSUM3 (cksum);
1198
1199 if (remote_debug > 0)
1200 {
1201 ack[HDR_LENGTH + TRLR_LENGTH] = '\0';
1202 /* Don't use _filtered; we can't deal with a QUIT out of
1203 target_wait, and I think this might be called from there. */
1204 printf_unfiltered ("Writing ack %d \"%s\"\n", mips_receive_seq,
1205 ack + 1);
1206 }
1207
1208 if (SERIAL_WRITE (mips_desc, ack, HDR_LENGTH + TRLR_LENGTH) != 0)
1209 {
1210 if (throw_error)
1211 mips_error ("write to target failed: %s", safe_strerror (errno));
1212 else
1213 return -1;
1214 }
1215
1216 return len;
1217 }
1218 \f
1219 /* Optionally send a request to the remote system and optionally wait
1220 for the reply. This implements the remote debugging protocol,
1221 which is built on top of the packet protocol defined above. Each
1222 request has an ADDR argument and a DATA argument. The following
1223 requests are defined:
1224
1225 \0 don't send a request; just wait for a reply
1226 i read word from instruction space at ADDR
1227 d read word from data space at ADDR
1228 I write DATA to instruction space at ADDR
1229 D write DATA to data space at ADDR
1230 r read register number ADDR
1231 R set register number ADDR to value DATA
1232 c continue execution (if ADDR != 1, set pc to ADDR)
1233 s single step (if ADDR != 1, set pc to ADDR)
1234
1235 The read requests return the value requested. The write requests
1236 return the previous value in the changed location. The execution
1237 requests return a UNIX wait value (the approximate signal which
1238 caused execution to stop is in the upper eight bits).
1239
1240 If PERR is not NULL, this function waits for a reply. If an error
1241 occurs, it sets *PERR to 1 and sets errno according to what the
1242 target board reports. */
1243
1244 static CORE_ADDR
1245 mips_request (cmd, addr, data, perr, timeout, buff)
1246 int cmd;
1247 CORE_ADDR addr;
1248 CORE_ADDR data;
1249 int *perr;
1250 int timeout;
1251 char *buff;
1252 {
1253 char myBuff[DATA_MAXLEN + 1];
1254 int len;
1255 int rpid;
1256 char rcmd;
1257 int rerrflg;
1258 unsigned long rresponse;
1259
1260 if (buff == (char *) NULL)
1261 buff = myBuff;
1262
1263 if (cmd != '\0')
1264 {
1265 if (mips_need_reply)
1266 internal_error ("mips_request: Trying to send command before reply");
1267 sprintf (buff, "0x0 %c 0x%s 0x%s", cmd, paddr_nz (addr), paddr_nz (data));
1268 mips_send_packet (buff, 1);
1269 mips_need_reply = 1;
1270 }
1271
1272 if (perr == (int *) NULL)
1273 return 0;
1274
1275 if (!mips_need_reply)
1276 internal_error ("mips_request: Trying to get reply before command");
1277
1278 mips_need_reply = 0;
1279
1280 len = mips_receive_packet (buff, 1, timeout);
1281 buff[len] = '\0';
1282
1283 if (sscanf (buff, "0x%x %c 0x%x 0x%lx",
1284 &rpid, &rcmd, &rerrflg, &rresponse) != 4
1285 || (cmd != '\0' && rcmd != cmd))
1286 mips_error ("Bad response from remote board");
1287
1288 if (rerrflg != 0)
1289 {
1290 *perr = 1;
1291
1292 /* FIXME: This will returns MIPS errno numbers, which may or may
1293 not be the same as errno values used on other systems. If
1294 they stick to common errno values, they will be the same, but
1295 if they don't, they must be translated. */
1296 errno = rresponse;
1297
1298 return 0;
1299 }
1300
1301 *perr = 0;
1302 return rresponse;
1303 }
1304
1305 static void
1306 mips_initialize_cleanups (arg)
1307 PTR arg;
1308 {
1309 mips_initializing = 0;
1310 }
1311
1312 static void
1313 mips_exit_cleanups (arg)
1314 PTR arg;
1315 {
1316 mips_exiting = 0;
1317 }
1318
1319 static void
1320 mips_send_command (cmd, prompt)
1321 const char *cmd;
1322 int prompt;
1323 {
1324 SERIAL_WRITE (mips_desc, cmd, strlen (cmd));
1325 mips_expect (cmd);
1326 mips_expect ("\n");
1327 if (prompt)
1328 mips_expect (mips_monitor_prompt);
1329 }
1330
1331 /* Enter remote (dbx) debug mode: */
1332 static void
1333 mips_enter_debug ()
1334 {
1335 /* Reset the sequence numbers, ready for the new debug sequence: */
1336 mips_send_seq = 0;
1337 mips_receive_seq = 0;
1338
1339 if (mips_monitor != MON_IDT)
1340 mips_send_command ("debug\r", 0);
1341 else /* assume IDT monitor by default */
1342 mips_send_command ("db tty0\r", 0);
1343
1344 sleep (1);
1345 SERIAL_WRITE (mips_desc, "\r", sizeof "\r" - 1);
1346
1347 /* We don't need to absorb any spurious characters here, since the
1348 mips_receive_header will eat up a reasonable number of characters
1349 whilst looking for the SYN, however this avoids the "garbage"
1350 being displayed to the user. */
1351 if (mips_monitor != MON_IDT)
1352 mips_expect ("\r");
1353
1354 {
1355 char buff[DATA_MAXLEN + 1];
1356 if (mips_receive_packet (buff, 1, 3) < 0)
1357 mips_error ("Failed to initialize (didn't receive packet).");
1358 }
1359 }
1360
1361 /* Exit remote (dbx) debug mode, returning to the monitor prompt: */
1362 static int
1363 mips_exit_debug ()
1364 {
1365 int err;
1366 struct cleanup *old_cleanups = make_cleanup (mips_exit_cleanups, NULL);
1367
1368 mips_exiting = 1;
1369
1370 if (mips_monitor != MON_IDT)
1371 {
1372 /* The DDB (NEC) and MiniRISC (LSI) versions of PMON exit immediately,
1373 so we do not get a reply to this command: */
1374 mips_request ('x', (unsigned int) 0, (unsigned int) 0, NULL,
1375 mips_receive_wait, NULL);
1376 mips_need_reply = 0;
1377 if (!mips_expect (" break!"))
1378 return -1;
1379 }
1380 else
1381 mips_request ('x', (unsigned int) 0, (unsigned int) 0, &err,
1382 mips_receive_wait, NULL);
1383
1384 if (!mips_expect (mips_monitor_prompt))
1385 return -1;
1386
1387 do_cleanups (old_cleanups);
1388
1389 return 0;
1390 }
1391
1392 /* Initialize a new connection to the MIPS board, and make sure we are
1393 really connected. */
1394
1395 static void
1396 mips_initialize ()
1397 {
1398 int err;
1399 struct cleanup *old_cleanups = make_cleanup (mips_initialize_cleanups, NULL);
1400 int j;
1401
1402 /* What is this code doing here? I don't see any way it can happen, and
1403 it might mean mips_initializing didn't get cleared properly.
1404 So I'll make it a warning. */
1405
1406 if (mips_initializing)
1407 {
1408 warning ("internal error: mips_initialize called twice");
1409 return;
1410 }
1411
1412 mips_wait_flag = 0;
1413 mips_initializing = 1;
1414
1415 /* At this point, the packit protocol isn't responding. We'll try getting
1416 into the monitor, and restarting the protocol. */
1417
1418 /* Force the system into the monitor. After this we *should* be at
1419 the mips_monitor_prompt. */
1420 if (mips_monitor != MON_IDT)
1421 j = 0; /* start by checking if we are already at the prompt */
1422 else
1423 j = 1; /* start by sending a break */
1424 for (; j <= 4; j++)
1425 {
1426 switch (j)
1427 {
1428 case 0: /* First, try sending a CR */
1429 SERIAL_FLUSH_INPUT (mips_desc);
1430 SERIAL_WRITE (mips_desc, "\r", 1);
1431 break;
1432 case 1: /* First, try sending a break */
1433 SERIAL_SEND_BREAK (mips_desc);
1434 break;
1435 case 2: /* Then, try a ^C */
1436 SERIAL_WRITE (mips_desc, "\003", 1);
1437 break;
1438 case 3: /* Then, try escaping from download */
1439 {
1440 if (mips_monitor != MON_IDT)
1441 {
1442 char tbuff[7];
1443
1444 /* We shouldn't need to send multiple termination
1445 sequences, since the target performs line (or
1446 block) reads, and then processes those
1447 packets. In-case we were downloading a large packet
1448 we flush the output buffer before inserting a
1449 termination sequence. */
1450 SERIAL_FLUSH_OUTPUT (mips_desc);
1451 sprintf (tbuff, "\r/E/E\r");
1452 SERIAL_WRITE (mips_desc, tbuff, 6);
1453 }
1454 else
1455 {
1456 char srec[10];
1457 int i;
1458
1459 /* We are possibly in binary download mode, having
1460 aborted in the middle of an S-record. ^C won't
1461 work because of binary mode. The only reliable way
1462 out is to send enough termination packets (8 bytes)
1463 to fill up and then overflow the largest size
1464 S-record (255 bytes in this case). This amounts to
1465 256/8 + 1 packets.
1466 */
1467
1468 mips_make_srec (srec, '7', 0, NULL, 0);
1469
1470 for (i = 1; i <= 33; i++)
1471 {
1472 SERIAL_WRITE (mips_desc, srec, 8);
1473
1474 if (SERIAL_READCHAR (mips_desc, 0) >= 0)
1475 break; /* Break immediatly if we get something from
1476 the board. */
1477 }
1478 }
1479 }
1480 break;
1481 case 4:
1482 mips_error ("Failed to initialize.");
1483 }
1484
1485 if (mips_expect (mips_monitor_prompt))
1486 break;
1487 }
1488
1489 if (mips_monitor != MON_IDT)
1490 {
1491 /* Sometimes PMON ignores the first few characters in the first
1492 command sent after a load. Sending a blank command gets
1493 around that. */
1494 mips_send_command ("\r", -1);
1495
1496 /* Ensure the correct target state: */
1497 if (mips_monitor != MON_LSI)
1498 mips_send_command ("set regsize 64\r", -1);
1499 mips_send_command ("set hostport tty0\r", -1);
1500 mips_send_command ("set brkcmd \"\"\r", -1);
1501 /* Delete all the current breakpoints: */
1502 mips_send_command ("db *\r", -1);
1503 /* NOTE: PMON does not have breakpoint support through the
1504 "debug" mode, only at the monitor command-line. */
1505 }
1506
1507 mips_enter_debug ();
1508
1509 /* Clear all breakpoints: */
1510 if ((mips_monitor == MON_IDT
1511 && clear_breakpoint (-1, 0, BREAK_UNUSED) == 0)
1512 || mips_monitor == MON_LSI)
1513 monitor_supports_breakpoints = 1;
1514 else
1515 monitor_supports_breakpoints = 0;
1516
1517 do_cleanups (old_cleanups);
1518
1519 /* If this doesn't call error, we have connected; we don't care if
1520 the request itself succeeds or fails. */
1521
1522 mips_request ('r', (unsigned int) 0, (unsigned int) 0, &err,
1523 mips_receive_wait, NULL);
1524 set_current_frame (create_new_frame (read_fp (), read_pc ()));
1525 select_frame (get_current_frame (), 0);
1526 }
1527
1528 /* Open a connection to the remote board. */
1529 static void
1530 common_open (ops, name, from_tty, new_monitor, new_monitor_prompt)
1531 struct target_ops *ops;
1532 char *name;
1533 int from_tty;
1534 enum mips_monitor_type new_monitor;
1535 char *new_monitor_prompt;
1536 {
1537 char *ptype;
1538 char *serial_port_name;
1539 char *remote_name = 0;
1540 char *local_name = 0;
1541 char **argv;
1542
1543 if (name == 0)
1544 error (
1545 "To open a MIPS remote debugging connection, you need to specify what serial\n\
1546 device is attached to the target board (e.g., /dev/ttya).\n"
1547 "If you want to use TFTP to download to the board, specify the name of a\n"
1548 "temporary file to be used by GDB for downloads as the second argument.\n"
1549 "This filename must be in the form host:filename, where host is the name\n"
1550 "of the host running the TFTP server, and the file must be readable by the\n"
1551 "world. If the local name of the temporary file differs from the name as\n"
1552 "seen from the board via TFTP, specify that name as the third parameter.\n");
1553
1554 /* Parse the serial port name, the optional TFTP name, and the
1555 optional local TFTP name. */
1556 if ((argv = buildargv (name)) == NULL)
1557 nomem (0);
1558 make_cleanup_freeargv (argv);
1559
1560 serial_port_name = strsave (argv[0]);
1561 if (argv[1]) /* remote TFTP name specified? */
1562 {
1563 remote_name = argv[1];
1564 if (argv[2]) /* local TFTP filename specified? */
1565 local_name = argv[2];
1566 }
1567
1568 target_preopen (from_tty);
1569
1570 if (mips_is_open)
1571 unpush_target (current_ops);
1572
1573 /* Open and initialize the serial port. */
1574 mips_desc = SERIAL_OPEN (serial_port_name);
1575 if (mips_desc == (serial_t) NULL)
1576 perror_with_name (serial_port_name);
1577
1578 if (baud_rate != -1)
1579 {
1580 if (SERIAL_SETBAUDRATE (mips_desc, baud_rate))
1581 {
1582 SERIAL_CLOSE (mips_desc);
1583 perror_with_name (serial_port_name);
1584 }
1585 }
1586
1587 SERIAL_RAW (mips_desc);
1588
1589 /* Open and initialize the optional download port. If it is in the form
1590 hostname#portnumber, it's a UDP socket. If it is in the form
1591 hostname:filename, assume it's the TFTP filename that must be
1592 passed to the DDB board to tell it where to get the load file. */
1593 if (remote_name)
1594 {
1595 if (strchr (remote_name, '#'))
1596 {
1597 udp_desc = SERIAL_OPEN (remote_name);
1598 if (!udp_desc)
1599 perror_with_name ("Unable to open UDP port");
1600 udp_in_use = 1;
1601 }
1602 else
1603 {
1604 /* Save the remote and local names of the TFTP temp file. If
1605 the user didn't specify a local name, assume it's the same
1606 as the part of the remote name after the "host:". */
1607 if (tftp_name)
1608 free (tftp_name);
1609 if (tftp_localname)
1610 free (tftp_localname);
1611 if (local_name == NULL)
1612 if ((local_name = strchr (remote_name, ':')) != NULL)
1613 local_name++; /* skip over the colon */
1614 if (local_name == NULL)
1615 local_name = remote_name; /* local name same as remote name */
1616 tftp_name = strsave (remote_name);
1617 tftp_localname = strsave (local_name);
1618 tftp_in_use = 1;
1619 }
1620 }
1621
1622 current_ops = ops;
1623 mips_is_open = 1;
1624
1625 /* Reset the expected monitor prompt if it's never been set before. */
1626 if (mips_monitor_prompt == NULL)
1627 mips_monitor_prompt = strsave (new_monitor_prompt);
1628 mips_monitor = new_monitor;
1629
1630 mips_initialize ();
1631
1632 if (from_tty)
1633 printf_unfiltered ("Remote MIPS debugging using %s\n", serial_port_name);
1634
1635 /* Switch to using remote target now. */
1636 push_target (ops);
1637
1638 /* FIXME: Should we call start_remote here? */
1639
1640 /* Try to figure out the processor model if possible. */
1641 ptype = mips_read_processor_type ();
1642 if (ptype)
1643 mips_set_processor_type_command (strsave (ptype), 0);
1644
1645 /* This is really the job of start_remote however, that makes an assumption
1646 that the target is about to print out a status message of some sort. That
1647 doesn't happen here (in fact, it may not be possible to get the monitor to
1648 send the appropriate packet). */
1649
1650 flush_cached_frames ();
1651 registers_changed ();
1652 stop_pc = read_pc ();
1653 set_current_frame (create_new_frame (read_fp (), stop_pc));
1654 select_frame (get_current_frame (), 0);
1655 print_stack_frame (selected_frame, -1, 1);
1656 free (serial_port_name);
1657 }
1658
1659 static void
1660 mips_open (name, from_tty)
1661 char *name;
1662 int from_tty;
1663 {
1664 common_open (&mips_ops, name, from_tty, MON_IDT, TARGET_MONITOR_PROMPT);
1665 }
1666
1667 static void
1668 pmon_open (name, from_tty)
1669 char *name;
1670 int from_tty;
1671 {
1672 common_open (&pmon_ops, name, from_tty, MON_PMON, "PMON> ");
1673 }
1674
1675 static void
1676 ddb_open (name, from_tty)
1677 char *name;
1678 int from_tty;
1679 {
1680 common_open (&ddb_ops, name, from_tty, MON_DDB, "NEC010>");
1681 }
1682
1683 static void
1684 lsi_open (name, from_tty)
1685 char *name;
1686 int from_tty;
1687 {
1688 int i;
1689
1690 /* Clear the LSI breakpoint table. */
1691 for (i = 0; i < MAX_LSI_BREAKPOINTS; i++)
1692 lsi_breakpoints[i].type = BREAK_UNUSED;
1693
1694 common_open (&lsi_ops, name, from_tty, MON_LSI, "PMON> ");
1695 }
1696
1697 /* Close a connection to the remote board. */
1698
1699 static void
1700 mips_close (quitting)
1701 int quitting;
1702 {
1703 if (mips_is_open)
1704 {
1705 /* Get the board out of remote debugging mode. */
1706 (void) mips_exit_debug ();
1707
1708 close_ports ();
1709 }
1710 }
1711
1712 /* Detach from the remote board. */
1713
1714 static void
1715 mips_detach (args, from_tty)
1716 char *args;
1717 int from_tty;
1718 {
1719 if (args)
1720 error ("Argument given to \"detach\" when remotely debugging.");
1721
1722 pop_target ();
1723
1724 mips_close (1);
1725
1726 if (from_tty)
1727 printf_unfiltered ("Ending remote MIPS debugging.\n");
1728 }
1729
1730 /* Tell the target board to resume. This does not wait for a reply
1731 from the board, except in the case of single-stepping on LSI boards,
1732 where PMON does return a reply. */
1733
1734 static void
1735 mips_resume (pid, step, siggnal)
1736 int pid, step;
1737 enum target_signal siggnal;
1738 {
1739 int err;
1740
1741 /* LSI PMON requires returns a reply packet "0x1 s 0x0 0x57f" after
1742 a single step, so we wait for that. */
1743 mips_request (step ? 's' : 'c',
1744 (unsigned int) 1,
1745 (unsigned int) siggnal,
1746 mips_monitor == MON_LSI && step ? &err : (int *) NULL,
1747 mips_receive_wait, NULL);
1748 }
1749
1750 /* Return the signal corresponding to SIG, where SIG is the number which
1751 the MIPS protocol uses for the signal. */
1752 enum target_signal
1753 mips_signal_from_protocol (sig)
1754 int sig;
1755 {
1756 /* We allow a few more signals than the IDT board actually returns, on
1757 the theory that there is at least *some* hope that perhaps the numbering
1758 for these signals is widely agreed upon. */
1759 if (sig <= 0
1760 || sig > 31)
1761 return TARGET_SIGNAL_UNKNOWN;
1762
1763 /* Don't want to use target_signal_from_host because we are converting
1764 from MIPS signal numbers, not host ones. Our internal numbers
1765 match the MIPS numbers for the signals the board can return, which
1766 are: SIGINT, SIGSEGV, SIGBUS, SIGILL, SIGFPE, SIGTRAP. */
1767 return (enum target_signal) sig;
1768 }
1769
1770 /* Wait until the remote stops, and return a wait status. */
1771
1772 static int
1773 mips_wait (pid, status)
1774 int pid;
1775 struct target_waitstatus *status;
1776 {
1777 int rstatus;
1778 int err;
1779 char buff[DATA_MAXLEN];
1780 int rpc, rfp, rsp;
1781 char flags[20];
1782 int nfields;
1783 int i;
1784
1785 interrupt_count = 0;
1786 hit_watchpoint = 0;
1787
1788 /* If we have not sent a single step or continue command, then the
1789 board is waiting for us to do something. Return a status
1790 indicating that it is stopped. */
1791 if (!mips_need_reply)
1792 {
1793 status->kind = TARGET_WAITKIND_STOPPED;
1794 status->value.sig = TARGET_SIGNAL_TRAP;
1795 return 0;
1796 }
1797
1798 /* No timeout; we sit here as long as the program continues to execute. */
1799 mips_wait_flag = 1;
1800 rstatus = mips_request ('\000', (unsigned int) 0, (unsigned int) 0, &err, -1,
1801 buff);
1802 mips_wait_flag = 0;
1803 if (err)
1804 mips_error ("Remote failure: %s", safe_strerror (errno));
1805
1806 /* On returning from a continue, the PMON monitor seems to start
1807 echoing back the messages we send prior to sending back the
1808 ACK. The code can cope with this, but to try and avoid the
1809 unnecessary serial traffic, and "spurious" characters displayed
1810 to the user, we cheat and reset the debug protocol. The problems
1811 seems to be caused by a check on the number of arguments, and the
1812 command length, within the monitor causing it to echo the command
1813 as a bad packet. */
1814 if (mips_monitor == MON_PMON)
1815 {
1816 mips_exit_debug ();
1817 mips_enter_debug ();
1818 }
1819
1820 /* See if we got back extended status. If so, pick out the pc, fp, sp, etc... */
1821
1822 nfields = sscanf (buff, "0x%*x %*c 0x%*x 0x%*x 0x%x 0x%x 0x%x 0x%*x %s",
1823 &rpc, &rfp, &rsp, flags);
1824 if (nfields >= 3)
1825 {
1826 char buf[MAX_REGISTER_RAW_SIZE];
1827
1828 store_unsigned_integer (buf, REGISTER_RAW_SIZE (PC_REGNUM), rpc);
1829 supply_register (PC_REGNUM, buf);
1830
1831 store_unsigned_integer (buf, REGISTER_RAW_SIZE (PC_REGNUM), rfp);
1832 supply_register (30, buf); /* This register they are avoiding and so it is unnamed */
1833
1834 store_unsigned_integer (buf, REGISTER_RAW_SIZE (SP_REGNUM), rsp);
1835 supply_register (SP_REGNUM, buf);
1836
1837 store_unsigned_integer (buf, REGISTER_RAW_SIZE (FP_REGNUM), 0);
1838 supply_register (FP_REGNUM, buf);
1839
1840 if (nfields == 9)
1841 {
1842 int i;
1843
1844 for (i = 0; i <= 2; i++)
1845 if (flags[i] == 'r' || flags[i] == 'w')
1846 hit_watchpoint = 1;
1847 else if (flags[i] == '\000')
1848 break;
1849 }
1850 }
1851
1852 if (strcmp (target_shortname, "lsi") == 0)
1853 {
1854 #if 0
1855 /* If this is an LSI PMON target, see if we just hit a hardrdware watchpoint.
1856 Right now, PMON doesn't give us enough information to determine which
1857 breakpoint we hit. So we have to look up the PC in our own table
1858 of breakpoints, and if found, assume it's just a normal instruction
1859 fetch breakpoint, not a data watchpoint. FIXME when PMON
1860 provides some way to tell us what type of breakpoint it is. */
1861 int i;
1862 CORE_ADDR pc = read_pc ();
1863
1864 hit_watchpoint = 1;
1865 for (i = 0; i < MAX_LSI_BREAKPOINTS; i++)
1866 {
1867 if (lsi_breakpoints[i].addr == pc
1868 && lsi_breakpoints[i].type == BREAK_FETCH)
1869 {
1870 hit_watchpoint = 0;
1871 break;
1872 }
1873 }
1874 #else
1875 /* If a data breakpoint was hit, PMON returns the following packet:
1876 0x1 c 0x0 0x57f 0x1
1877 The return packet from an ordinary breakpoint doesn't have the
1878 extra 0x01 field tacked onto the end. */
1879 if (nfields == 1 && rpc == 1)
1880 hit_watchpoint = 1;
1881 #endif
1882 }
1883
1884 /* NOTE: The following (sig) numbers are defined by PMON:
1885 SPP_SIGTRAP 5 breakpoint
1886 SPP_SIGINT 2
1887 SPP_SIGSEGV 11
1888 SPP_SIGBUS 10
1889 SPP_SIGILL 4
1890 SPP_SIGFPE 8
1891 SPP_SIGTERM 15 */
1892
1893 /* Translate a MIPS waitstatus. We use constants here rather than WTERMSIG
1894 and so on, because the constants we want here are determined by the
1895 MIPS protocol and have nothing to do with what host we are running on. */
1896 if ((rstatus & 0xff) == 0)
1897 {
1898 status->kind = TARGET_WAITKIND_EXITED;
1899 status->value.integer = (((rstatus) >> 8) & 0xff);
1900 }
1901 else if ((rstatus & 0xff) == 0x7f)
1902 {
1903 status->kind = TARGET_WAITKIND_STOPPED;
1904 status->value.sig = mips_signal_from_protocol (((rstatus) >> 8) & 0xff);
1905
1906 /* If the stop PC is in the _exit function, assume
1907 we hit the 'break 0x3ff' instruction in _exit, so this
1908 is not a normal breakpoint. */
1909 if (strcmp (target_shortname, "lsi") == 0)
1910 {
1911 char *func_name;
1912 CORE_ADDR func_start;
1913 CORE_ADDR pc = read_pc ();
1914
1915 find_pc_partial_function (pc, &func_name, &func_start, NULL);
1916 if (func_name != NULL && strcmp (func_name, "_exit") == 0
1917 && func_start == pc)
1918 status->kind = TARGET_WAITKIND_EXITED;
1919 }
1920 }
1921 else
1922 {
1923 status->kind = TARGET_WAITKIND_SIGNALLED;
1924 status->value.sig = mips_signal_from_protocol (rstatus & 0x7f);
1925 }
1926
1927 return 0;
1928 }
1929
1930 /* We have to map between the register numbers used by gdb and the
1931 register numbers used by the debugging protocol. This function
1932 assumes that we are using tm-mips.h. */
1933
1934 #define REGNO_OFFSET 96
1935
1936 static int
1937 mips_map_regno (regno)
1938 int regno;
1939 {
1940 if (regno < 32)
1941 return regno;
1942 if (regno >= FP0_REGNUM && regno < FP0_REGNUM + 32)
1943 return regno - FP0_REGNUM + 32;
1944 switch (regno)
1945 {
1946 case PC_REGNUM:
1947 return REGNO_OFFSET + 0;
1948 case CAUSE_REGNUM:
1949 return REGNO_OFFSET + 1;
1950 case HI_REGNUM:
1951 return REGNO_OFFSET + 2;
1952 case LO_REGNUM:
1953 return REGNO_OFFSET + 3;
1954 case FCRCS_REGNUM:
1955 return REGNO_OFFSET + 4;
1956 case FCRIR_REGNUM:
1957 return REGNO_OFFSET + 5;
1958 default:
1959 /* FIXME: Is there a way to get the status register? */
1960 return 0;
1961 }
1962 }
1963
1964 /* Fetch the remote registers. */
1965
1966 static void
1967 mips_fetch_registers (regno)
1968 int regno;
1969 {
1970 unsigned LONGEST val;
1971 int err;
1972
1973 if (regno == -1)
1974 {
1975 for (regno = 0; regno < NUM_REGS; regno++)
1976 mips_fetch_registers (regno);
1977 return;
1978 }
1979
1980 if (regno == FP_REGNUM || regno == ZERO_REGNUM)
1981 /* FP_REGNUM on the mips is a hack which is just supposed to read
1982 zero (see also mips-nat.c). */
1983 val = 0;
1984 else
1985 {
1986 /* If PMON doesn't support this register, don't waste serial
1987 bandwidth trying to read it. */
1988 int pmon_reg = mips_map_regno (regno);
1989 if (regno != 0 && pmon_reg == 0)
1990 val = 0;
1991 else
1992 {
1993 /* Unfortunately the PMON version in the Vr4300 board has been
1994 compiled without the 64bit register access commands. This
1995 means we cannot get hold of the full register width. */
1996 if (mips_monitor == MON_DDB)
1997 val = (unsigned) mips_request ('t', (unsigned int) pmon_reg,
1998 (unsigned int) 0, &err, mips_receive_wait, NULL);
1999 else
2000 val = mips_request ('r', (unsigned int) pmon_reg,
2001 (unsigned int) 0, &err, mips_receive_wait, NULL);
2002 if (err)
2003 mips_error ("Can't read register %d: %s", regno,
2004 safe_strerror (errno));
2005 }
2006 }
2007
2008 {
2009 char buf[MAX_REGISTER_RAW_SIZE];
2010
2011 /* We got the number the register holds, but gdb expects to see a
2012 value in the target byte ordering. */
2013 store_unsigned_integer (buf, REGISTER_RAW_SIZE (regno), val);
2014 supply_register (regno, buf);
2015 }
2016 }
2017
2018 /* Prepare to store registers. The MIPS protocol can store individual
2019 registers, so this function doesn't have to do anything. */
2020
2021 static void
2022 mips_prepare_to_store ()
2023 {
2024 }
2025
2026 /* Store remote register(s). */
2027
2028 static void
2029 mips_store_registers (regno)
2030 int regno;
2031 {
2032 int err;
2033
2034 if (regno == -1)
2035 {
2036 for (regno = 0; regno < NUM_REGS; regno++)
2037 mips_store_registers (regno);
2038 return;
2039 }
2040
2041 mips_request ('R', (unsigned int) mips_map_regno (regno),
2042 read_register (regno),
2043 &err, mips_receive_wait, NULL);
2044 if (err)
2045 mips_error ("Can't write register %d: %s", regno, safe_strerror (errno));
2046 }
2047
2048 /* Fetch a word from the target board. */
2049
2050 static unsigned int
2051 mips_fetch_word (addr)
2052 CORE_ADDR addr;
2053 {
2054 unsigned int val;
2055 int err;
2056
2057 /* FIXME! addr was cast to uint! */
2058 val = mips_request ('d', addr, (unsigned int) 0, &err,
2059 mips_receive_wait, NULL);
2060 if (err)
2061 {
2062 /* Data space failed; try instruction space. */
2063 /* FIXME! addr was cast to uint! */
2064 val = mips_request ('i', addr, (unsigned int) 0, &err,
2065 mips_receive_wait, NULL);
2066 if (err)
2067 mips_error ("Can't read address 0x%s: %s",
2068 paddr_nz (addr), safe_strerror (errno));
2069 }
2070 return val;
2071 }
2072
2073 /* Store a word to the target board. Returns errno code or zero for
2074 success. If OLD_CONTENTS is non-NULL, put the old contents of that
2075 memory location there. */
2076
2077 /* FIXME! make sure only 32-bit quantities get stored! */
2078 static int
2079 mips_store_word (addr, val, old_contents)
2080 CORE_ADDR addr;
2081 unsigned int val;
2082 char *old_contents;
2083 {
2084 int err;
2085 unsigned int oldcontents;
2086
2087 oldcontents = mips_request ('D', addr, (unsigned int) val,
2088 &err,
2089 mips_receive_wait, NULL);
2090 if (err)
2091 {
2092 /* Data space failed; try instruction space. */
2093 oldcontents = mips_request ('I', addr,
2094 (unsigned int) val, &err,
2095 mips_receive_wait, NULL);
2096 if (err)
2097 return errno;
2098 }
2099 if (old_contents != NULL)
2100 store_unsigned_integer (old_contents, 4, oldcontents);
2101 return 0;
2102 }
2103
2104 /* Read or write LEN bytes from inferior memory at MEMADDR,
2105 transferring to or from debugger address MYADDR. Write to inferior
2106 if SHOULD_WRITE is nonzero. Returns length of data written or
2107 read; 0 for error. Note that protocol gives us the correct value
2108 for a longword, since it transfers values in ASCII. We want the
2109 byte values, so we have to swap the longword values. */
2110
2111 static int
2112 mips_xfer_memory (memaddr, myaddr, len, write, ignore)
2113 CORE_ADDR memaddr;
2114 char *myaddr;
2115 int len;
2116 int write;
2117 struct target_ops *ignore;
2118 {
2119 register int i;
2120 /* Round starting address down to longword boundary. */
2121 register CORE_ADDR addr = memaddr & ~3;
2122 /* Round ending address up; get number of longwords that makes. */
2123 register int count = (((memaddr + len) - addr) + 3) / 4;
2124 /* Allocate buffer of that many longwords. */
2125 register char *buffer = alloca (count * 4);
2126
2127 int status;
2128
2129 if (write)
2130 {
2131 /* Fill start and end extra bytes of buffer with existing data. */
2132 if (addr != memaddr || len < 4)
2133 {
2134 /* Need part of initial word -- fetch it. */
2135 store_unsigned_integer (&buffer[0], 4, mips_fetch_word (addr));
2136 }
2137
2138 if (count > 1)
2139 {
2140 /* Need part of last word -- fetch it. FIXME: we do this even
2141 if we don't need it. */
2142 store_unsigned_integer (&buffer[(count - 1) * 4], 4,
2143 mips_fetch_word (addr + (count - 1) * 4));
2144 }
2145
2146 /* Copy data to be written over corresponding part of buffer */
2147
2148 memcpy ((char *) buffer + (memaddr & 3), myaddr, len);
2149
2150 /* Write the entire buffer. */
2151
2152 for (i = 0; i < count; i++, addr += 4)
2153 {
2154 status = mips_store_word (addr,
2155 extract_unsigned_integer (&buffer[i * 4], 4),
2156 NULL);
2157 /* Report each kilobyte (we download 32-bit words at a time) */
2158 if (i % 256 == 255)
2159 {
2160 printf_unfiltered ("*");
2161 gdb_flush (gdb_stdout);
2162 }
2163 if (status)
2164 {
2165 errno = status;
2166 return 0;
2167 }
2168 /* FIXME: Do we want a QUIT here? */
2169 }
2170 if (count >= 256)
2171 printf_unfiltered ("\n");
2172 }
2173 else
2174 {
2175 /* Read all the longwords */
2176 for (i = 0; i < count; i++, addr += 4)
2177 {
2178 store_unsigned_integer (&buffer[i * 4], 4, mips_fetch_word (addr));
2179 QUIT;
2180 }
2181
2182 /* Copy appropriate bytes out of the buffer. */
2183 memcpy (myaddr, buffer + (memaddr & 3), len);
2184 }
2185 return len;
2186 }
2187
2188 /* Print info on this target. */
2189
2190 static void
2191 mips_files_info (ignore)
2192 struct target_ops *ignore;
2193 {
2194 printf_unfiltered ("Debugging a MIPS board over a serial line.\n");
2195 }
2196
2197 /* Kill the process running on the board. This will actually only
2198 work if we are doing remote debugging over the console input. I
2199 think that if IDT/sim had the remote debug interrupt enabled on the
2200 right port, we could interrupt the process with a break signal. */
2201
2202 static void
2203 mips_kill ()
2204 {
2205 if (!mips_wait_flag)
2206 return;
2207
2208 interrupt_count++;
2209
2210 if (interrupt_count >= 2)
2211 {
2212 interrupt_count = 0;
2213
2214 target_terminal_ours ();
2215
2216 if (query ("Interrupted while waiting for the program.\n\
2217 Give up (and stop debugging it)? "))
2218 {
2219 /* Clean up in such a way that mips_close won't try to talk to the
2220 board (it almost surely won't work since we weren't able to talk to
2221 it). */
2222 mips_wait_flag = 0;
2223 close_ports ();
2224
2225 printf_unfiltered ("Ending remote MIPS debugging.\n");
2226 target_mourn_inferior ();
2227
2228 return_to_top_level (RETURN_QUIT);
2229 }
2230
2231 target_terminal_inferior ();
2232 }
2233
2234 if (remote_debug > 0)
2235 printf_unfiltered ("Sending break\n");
2236
2237 SERIAL_SEND_BREAK (mips_desc);
2238
2239 #if 0
2240 if (mips_is_open)
2241 {
2242 char cc;
2243
2244 /* Send a ^C. */
2245 cc = '\003';
2246 SERIAL_WRITE (mips_desc, &cc, 1);
2247 sleep (1);
2248 target_mourn_inferior ();
2249 }
2250 #endif
2251 }
2252
2253 /* Start running on the target board. */
2254
2255 static void
2256 mips_create_inferior (execfile, args, env)
2257 char *execfile;
2258 char *args;
2259 char **env;
2260 {
2261 CORE_ADDR entry_pt;
2262
2263 if (args && *args)
2264 {
2265 warning ("\
2266 Can't pass arguments to remote MIPS board; arguments ignored.");
2267 /* And don't try to use them on the next "run" command. */
2268 execute_command ("set args", 0);
2269 }
2270
2271 if (execfile == 0 || exec_bfd == 0)
2272 error ("No executable file specified");
2273
2274 entry_pt = (CORE_ADDR) bfd_get_start_address (exec_bfd);
2275
2276 init_wait_for_inferior ();
2277
2278 /* FIXME: Should we set inferior_pid here? */
2279
2280 proceed (entry_pt, TARGET_SIGNAL_DEFAULT, 0);
2281 }
2282
2283 /* Clean up after a process. Actually nothing to do. */
2284
2285 static void
2286 mips_mourn_inferior ()
2287 {
2288 if (current_ops != NULL)
2289 unpush_target (current_ops);
2290 generic_mourn_inferior ();
2291 }
2292 \f
2293 /* We can write a breakpoint and read the shadow contents in one
2294 operation. */
2295
2296 /* Insert a breakpoint. On targets that don't have built-in breakpoint
2297 support, we read the contents of the target location and stash it,
2298 then overwrite it with a breakpoint instruction. ADDR is the target
2299 location in the target machine. CONTENTS_CACHE is a pointer to
2300 memory allocated for saving the target contents. It is guaranteed
2301 by the caller to be long enough to save sizeof BREAKPOINT bytes (this
2302 is accomplished via BREAKPOINT_MAX). */
2303
2304 static int
2305 mips_insert_breakpoint (addr, contents_cache)
2306 CORE_ADDR addr;
2307 char *contents_cache;
2308 {
2309 if (monitor_supports_breakpoints)
2310 return set_breakpoint (addr, MIPS_INSTLEN, BREAK_FETCH);
2311 else
2312 return memory_insert_breakpoint (addr, contents_cache);
2313 }
2314
2315 static int
2316 mips_remove_breakpoint (addr, contents_cache)
2317 CORE_ADDR addr;
2318 char *contents_cache;
2319 {
2320 if (monitor_supports_breakpoints)
2321 return clear_breakpoint (addr, MIPS_INSTLEN, BREAK_FETCH);
2322 else
2323 return memory_remove_breakpoint (addr, contents_cache);
2324 }
2325
2326 #if 0 /* currently not used */
2327 /* PMON does not currently provide support for the debug mode 'b'
2328 commands to manipulate breakpoints. However, if we wanted to use
2329 the monitor breakpoints (rather than the GDB BREAK_INSN version)
2330 then this code performs the work needed to leave debug mode,
2331 set/clear the breakpoint, and then return to debug mode. */
2332
2333 #define PMON_MAX_BP (33) /* 32 SW, 1 HW */
2334 static CORE_ADDR mips_pmon_bp_info[PMON_MAX_BP];
2335 /* NOTE: The code relies on this vector being zero-initialised by the system */
2336
2337 static int
2338 pmon_insert_breakpoint (addr, contents_cache)
2339 CORE_ADDR addr;
2340 char *contents_cache;
2341 {
2342 int status;
2343
2344 if (monitor_supports_breakpoints)
2345 {
2346 char tbuff[12]; /* space for breakpoint command */
2347 int bpnum;
2348 CORE_ADDR bpaddr;
2349
2350 /* PMON does not support debug level breakpoint set/remove: */
2351 if (mips_exit_debug ())
2352 mips_error ("Failed to exit debug mode");
2353
2354 sprintf (tbuff, "b %08x\r", addr);
2355 mips_send_command (tbuff, 0);
2356
2357 mips_expect ("Bpt ");
2358
2359 if (!mips_getstring (tbuff, 2))
2360 return 1;
2361 tbuff[2] = '\0'; /* terminate the string */
2362 if (sscanf (tbuff, "%d", &bpnum) != 1)
2363 {
2364 fprintf_unfiltered (gdb_stderr,
2365 "Invalid decimal breakpoint number from target: %s\n", tbuff);
2366 return 1;
2367 }
2368
2369 mips_expect (" = ");
2370
2371 /* Lead in the hex number we are expecting: */
2372 tbuff[0] = '0';
2373 tbuff[1] = 'x';
2374
2375 /* FIXME!! only 8 bytes! need to expand for Bfd64;
2376 which targets return 64-bit addresses? PMON returns only 32! */
2377 if (!mips_getstring (&tbuff[2], 8))
2378 return 1;
2379 tbuff[10] = '\0'; /* terminate the string */
2380
2381 if (sscanf (tbuff, "0x%08x", &bpaddr) != 1)
2382 {
2383 fprintf_unfiltered (gdb_stderr,
2384 "Invalid hex address from target: %s\n", tbuff);
2385 return 1;
2386 }
2387
2388 if (bpnum >= PMON_MAX_BP)
2389 {
2390 fprintf_unfiltered (gdb_stderr,
2391 "Error: Returned breakpoint number %d outside acceptable range (0..%d)\n",
2392 bpnum, PMON_MAX_BP - 1);
2393 return 1;
2394 }
2395
2396 if (bpaddr != addr)
2397 fprintf_unfiltered (gdb_stderr, "Warning: Breakpoint addresses do not match: 0x%x != 0x%x\n", addr, bpaddr);
2398
2399 mips_pmon_bp_info[bpnum] = bpaddr;
2400
2401 mips_expect ("\r\n");
2402 mips_expect (mips_monitor_prompt);
2403
2404 mips_enter_debug ();
2405
2406 return 0;
2407 }
2408
2409 return mips_store_word (addr, BREAK_INSN, contents_cache);
2410 }
2411
2412 static int
2413 pmon_remove_breakpoint (addr, contents_cache)
2414 CORE_ADDR addr;
2415 char *contents_cache;
2416 {
2417 if (monitor_supports_breakpoints)
2418 {
2419 int bpnum;
2420 char tbuff[7]; /* enough for delete breakpoint command */
2421
2422 for (bpnum = 0; bpnum < PMON_MAX_BP; bpnum++)
2423 if (mips_pmon_bp_info[bpnum] == addr)
2424 break;
2425
2426 if (bpnum >= PMON_MAX_BP)
2427 {
2428 fprintf_unfiltered (gdb_stderr,
2429 "pmon_remove_breakpoint: Failed to find breakpoint at address 0x%s\n",
2430 paddr_nz (addr));
2431 return 1;
2432 }
2433
2434 if (mips_exit_debug ())
2435 mips_error ("Failed to exit debug mode");
2436
2437 sprintf (tbuff, "db %02d\r", bpnum);
2438
2439 mips_send_command (tbuff, -1);
2440 /* NOTE: If the breakpoint does not exist then a "Bpt <dd> not
2441 set" message will be returned. */
2442
2443 mips_enter_debug ();
2444
2445 return 0;
2446 }
2447
2448 return target_write_memory (addr, contents_cache, BREAK_INSN_SIZE);
2449 }
2450 #endif
2451
2452
2453 /* Tell whether this target can support a hardware breakpoint. CNT
2454 is the number of hardware breakpoints already installed. This
2455 implements the TARGET_CAN_USE_HARDWARE_WATCHPOINT macro. */
2456
2457 int
2458 remote_mips_can_use_hardware_watchpoint (cnt)
2459 int cnt;
2460 {
2461 return cnt < MAX_LSI_BREAKPOINTS && strcmp (target_shortname, "lsi") == 0;
2462 }
2463
2464
2465 /* Compute a don't care mask for the region bounding ADDR and ADDR + LEN - 1.
2466 This is used for memory ref breakpoints. */
2467
2468 static unsigned long
2469 calculate_mask (addr, len)
2470 CORE_ADDR addr;
2471 int len;
2472 {
2473 unsigned long mask;
2474 int i;
2475
2476 mask = addr ^ (addr + len - 1);
2477
2478 for (i = 32; i >= 0; i--)
2479 if (mask == 0)
2480 break;
2481 else
2482 mask >>= 1;
2483
2484 mask = (unsigned long) 0xffffffff >> i;
2485
2486 return mask;
2487 }
2488
2489
2490 /* Insert a hardware breakpoint. This works only on LSI targets, which
2491 implement ordinary breakpoints using hardware facilities. */
2492
2493 int
2494 remote_mips_insert_hw_breakpoint (addr, contents_cache)
2495 CORE_ADDR addr;
2496 char *contents_cache;
2497 {
2498 if (strcmp (target_shortname, "lsi") == 0)
2499 return mips_insert_breakpoint (addr, contents_cache);
2500 else
2501 return -1;
2502 }
2503
2504
2505 /* Remove a hardware breakpoint. This works only on LSI targets, which
2506 implement ordinary breakpoints using hardware facilities. */
2507
2508 int
2509 remote_mips_remove_hw_breakpoint (addr, contents_cache)
2510 CORE_ADDR addr;
2511 char *contents_cache;
2512 {
2513 if (strcmp (target_shortname, "lsi") == 0)
2514 return mips_remove_breakpoint (addr, contents_cache);
2515 else
2516 return -1;
2517 }
2518
2519 /* Set a data watchpoint. ADDR and LEN should be obvious. TYPE is 0
2520 for a write watchpoint, 1 for a read watchpoint, or 2 for a read/write
2521 watchpoint. */
2522
2523 int
2524 remote_mips_set_watchpoint (addr, len, type)
2525 CORE_ADDR addr;
2526 int len;
2527 int type;
2528 {
2529 if (set_breakpoint (addr, len, type))
2530 return -1;
2531
2532 return 0;
2533 }
2534
2535 int
2536 remote_mips_remove_watchpoint (addr, len, type)
2537 CORE_ADDR addr;
2538 int len;
2539 int type;
2540 {
2541 if (clear_breakpoint (addr, len, type))
2542 return -1;
2543
2544 return 0;
2545 }
2546
2547 int
2548 remote_mips_stopped_by_watchpoint ()
2549 {
2550 return hit_watchpoint;
2551 }
2552
2553
2554 /* Insert a breakpoint. */
2555
2556 static int
2557 set_breakpoint (addr, len, type)
2558 CORE_ADDR addr;
2559 int len;
2560 enum break_type type;
2561 {
2562 return common_breakpoint (1, addr, len, type);
2563 }
2564
2565
2566 /* Clear a breakpoint. */
2567
2568 static int
2569 clear_breakpoint (addr, len, type)
2570 CORE_ADDR addr;
2571 int len;
2572 enum break_type type;
2573 {
2574 return common_breakpoint (0, addr, len, type);
2575 }
2576
2577
2578 /* Check the error code from the return packet for an LSI breakpoint
2579 command. If there's no error, just return 0. If it's a warning,
2580 print the warning text and return 0. If it's an error, print
2581 the error text and return 1. <ADDR> is the address of the breakpoint
2582 that was being set. <RERRFLG> is the error code returned by PMON.
2583 This is a helper function for common_breakpoint. */
2584
2585 static int
2586 check_lsi_error (addr, rerrflg)
2587 CORE_ADDR addr;
2588 int rerrflg;
2589 {
2590 struct lsi_error *err;
2591 char *saddr = paddr_nz (addr); /* printable address string */
2592
2593 if (rerrflg == 0) /* no error */
2594 return 0;
2595
2596 /* Warnings can be ORed together, so check them all. */
2597 if (rerrflg & W_WARN)
2598 {
2599 if (monitor_warnings)
2600 {
2601 int found = 0;
2602 for (err = lsi_warning_table; err->code != 0; err++)
2603 {
2604 if ((err->code & rerrflg) == err->code)
2605 {
2606 found = 1;
2607 fprintf_unfiltered (gdb_stderr,
2608 "common_breakpoint (0x%s): Warning: %s\n",
2609 saddr,
2610 err->string);
2611 }
2612 }
2613 if (!found)
2614 fprintf_unfiltered (gdb_stderr,
2615 "common_breakpoint (0x%s): Unknown warning: 0x%x\n",
2616 saddr,
2617 rerrflg);
2618 }
2619 return 0;
2620 }
2621
2622 /* Errors are unique, i.e. can't be ORed together. */
2623 for (err = lsi_error_table; err->code != 0; err++)
2624 {
2625 if ((err->code & rerrflg) == err->code)
2626 {
2627 fprintf_unfiltered (gdb_stderr,
2628 "common_breakpoint (0x%s): Error: %s\n",
2629 saddr,
2630 err->string);
2631 return 1;
2632 }
2633 }
2634 fprintf_unfiltered (gdb_stderr,
2635 "common_breakpoint (0x%s): Unknown error: 0x%x\n",
2636 saddr,
2637 rerrflg);
2638 return 1;
2639 }
2640
2641
2642 /* This routine sends a breakpoint command to the remote target.
2643
2644 <SET> is 1 if setting a breakpoint, or 0 if clearing a breakpoint.
2645 <ADDR> is the address of the breakpoint.
2646 <LEN> the length of the region to break on.
2647 <TYPE> is the type of breakpoint:
2648 0 = write (BREAK_WRITE)
2649 1 = read (BREAK_READ)
2650 2 = read/write (BREAK_ACCESS)
2651 3 = instruction fetch (BREAK_FETCH)
2652
2653 Return 0 if successful; otherwise 1. */
2654
2655 static int
2656 common_breakpoint (set, addr, len, type)
2657 int set;
2658 CORE_ADDR addr;
2659 int len;
2660 enum break_type type;
2661 {
2662 char buf[DATA_MAXLEN + 1];
2663 char cmd, rcmd;
2664 int rpid, rerrflg, rresponse, rlen;
2665 int nfields;
2666
2667 addr = ADDR_BITS_REMOVE (addr);
2668
2669 if (mips_monitor == MON_LSI)
2670 {
2671 if (set == 0) /* clear breakpoint */
2672 {
2673 /* The LSI PMON "clear breakpoint" has this form:
2674 <pid> 'b' <bptn> 0x0
2675 reply:
2676 <pid> 'b' 0x0 <code>
2677
2678 <bptn> is a breakpoint number returned by an earlier 'B' command.
2679 Possible return codes: OK, E_BPT. */
2680
2681 int i;
2682
2683 /* Search for the breakpoint in the table. */
2684 for (i = 0; i < MAX_LSI_BREAKPOINTS; i++)
2685 if (lsi_breakpoints[i].type == type
2686 && lsi_breakpoints[i].addr == addr
2687 && lsi_breakpoints[i].len == len)
2688 break;
2689
2690 /* Clear the table entry and tell PMON to clear the breakpoint. */
2691 if (i == MAX_LSI_BREAKPOINTS)
2692 {
2693 warning ("common_breakpoint: Attempt to clear bogus breakpoint at %s\n",
2694 paddr_nz (addr));
2695 return 1;
2696 }
2697
2698 lsi_breakpoints[i].type = BREAK_UNUSED;
2699 sprintf (buf, "0x0 b 0x%x 0x0", i);
2700 mips_send_packet (buf, 1);
2701
2702 rlen = mips_receive_packet (buf, 1, mips_receive_wait);
2703 buf[rlen] = '\0';
2704
2705 nfields = sscanf (buf, "0x%x b 0x0 0x%x", &rpid, &rerrflg);
2706 if (nfields != 2)
2707 mips_error ("common_breakpoint: Bad response from remote board: %s", buf);
2708
2709 return (check_lsi_error (addr, rerrflg));
2710 }
2711 else
2712 /* set a breakpoint */
2713 {
2714 /* The LSI PMON "set breakpoint" command has this form:
2715 <pid> 'B' <addr> 0x0
2716 reply:
2717 <pid> 'B' <bptn> <code>
2718
2719 The "set data breakpoint" command has this form:
2720
2721 <pid> 'A' <addr1> <type> [<addr2> [<value>]]
2722
2723 where: type= "0x1" = read
2724 "0x2" = write
2725 "0x3" = access (read or write)
2726
2727 The reply returns two values:
2728 bptn - a breakpoint number, which is a small integer with
2729 possible values of zero through 255.
2730 code - an error return code, a value of zero indicates a
2731 succesful completion, other values indicate various
2732 errors and warnings.
2733
2734 Possible return codes: OK, W_QAL, E_QAL, E_OUT, E_NON.
2735
2736 */
2737
2738 if (type == BREAK_FETCH) /* instruction breakpoint */
2739 {
2740 cmd = 'B';
2741 sprintf (buf, "0x0 B 0x%s 0x0", paddr_nz (addr));
2742 }
2743 else
2744 /* watchpoint */
2745 {
2746 cmd = 'A';
2747 sprintf (buf, "0x0 A 0x%s 0x%x 0x%s", paddr_nz (addr),
2748 type == BREAK_READ ? 1 : (type == BREAK_WRITE ? 2 : 3),
2749 paddr_nz (addr + len - 1));
2750 }
2751 mips_send_packet (buf, 1);
2752
2753 rlen = mips_receive_packet (buf, 1, mips_receive_wait);
2754 buf[rlen] = '\0';
2755
2756 nfields = sscanf (buf, "0x%x %c 0x%x 0x%x",
2757 &rpid, &rcmd, &rresponse, &rerrflg);
2758 if (nfields != 4 || rcmd != cmd || rresponse > 255)
2759 mips_error ("common_breakpoint: Bad response from remote board: %s", buf);
2760
2761 if (rerrflg != 0)
2762 if (check_lsi_error (addr, rerrflg))
2763 return 1;
2764
2765 /* rresponse contains PMON's breakpoint number. Record the
2766 information for this breakpoint so we can clear it later. */
2767 lsi_breakpoints[rresponse].type = type;
2768 lsi_breakpoints[rresponse].addr = addr;
2769 lsi_breakpoints[rresponse].len = len;
2770
2771 return 0;
2772 }
2773 }
2774 else
2775 {
2776 /* On non-LSI targets, the breakpoint command has this form:
2777 0x0 <CMD> <ADDR> <MASK> <FLAGS>
2778 <MASK> is a don't care mask for addresses.
2779 <FLAGS> is any combination of `r', `w', or `f' for read/write/fetch.
2780 */
2781 unsigned long mask;
2782
2783 mask = calculate_mask (addr, len);
2784 addr &= ~mask;
2785
2786 if (set) /* set a breakpoint */
2787 {
2788 char *flags;
2789 switch (type)
2790 {
2791 case BREAK_WRITE: /* write */
2792 flags = "w";
2793 break;
2794 case BREAK_READ: /* read */
2795 flags = "r";
2796 break;
2797 case BREAK_ACCESS: /* read/write */
2798 flags = "rw";
2799 break;
2800 case BREAK_FETCH: /* fetch */
2801 flags = "f";
2802 break;
2803 default:
2804 abort ();
2805 }
2806
2807 cmd = 'B';
2808 sprintf (buf, "0x0 B 0x%s 0x%s %s", paddr_nz (addr),
2809 paddr_nz (mask), flags);
2810 }
2811 else
2812 {
2813 cmd = 'b';
2814 sprintf (buf, "0x0 b 0x%s", paddr_nz (addr));
2815 }
2816
2817 mips_send_packet (buf, 1);
2818
2819 rlen = mips_receive_packet (buf, 1, mips_receive_wait);
2820 buf[rlen] = '\0';
2821
2822 nfields = sscanf (buf, "0x%x %c 0x%x 0x%x",
2823 &rpid, &rcmd, &rerrflg, &rresponse);
2824
2825 if (nfields != 4 || rcmd != cmd)
2826 mips_error ("common_breakpoint: Bad response from remote board: %s",
2827 buf);
2828
2829 if (rerrflg != 0)
2830 {
2831 /* Ddb returns "0x0 b 0x16 0x0\000", whereas
2832 Cogent returns "0x0 b 0xffffffff 0x16\000": */
2833 if (mips_monitor == MON_DDB)
2834 rresponse = rerrflg;
2835 if (rresponse != 22) /* invalid argument */
2836 fprintf_unfiltered (gdb_stderr,
2837 "common_breakpoint (0x%s): Got error: 0x%x\n",
2838 paddr_nz (addr), rresponse);
2839 return 1;
2840 }
2841 }
2842 return 0;
2843 }
2844 \f
2845 static void
2846 send_srec (srec, len, addr)
2847 char *srec;
2848 int len;
2849 CORE_ADDR addr;
2850 {
2851 while (1)
2852 {
2853 int ch;
2854
2855 SERIAL_WRITE (mips_desc, srec, len);
2856
2857 ch = mips_readchar (2);
2858
2859 switch (ch)
2860 {
2861 case SERIAL_TIMEOUT:
2862 error ("Timeout during download.");
2863 break;
2864 case 0x6: /* ACK */
2865 return;
2866 case 0x15: /* NACK */
2867 fprintf_unfiltered (gdb_stderr, "Download got a NACK at byte %d! Retrying.\n", addr);
2868 continue;
2869 default:
2870 error ("Download got unexpected ack char: 0x%x, retrying.\n", ch);
2871 }
2872 }
2873 }
2874
2875 /* Download a binary file by converting it to S records. */
2876
2877 static void
2878 mips_load_srec (args)
2879 char *args;
2880 {
2881 bfd *abfd;
2882 asection *s;
2883 char *buffer, srec[1024];
2884 unsigned int i;
2885 unsigned int srec_frame = 200;
2886 int reclen;
2887 static int hashmark = 1;
2888
2889 buffer = alloca (srec_frame * 2 + 256);
2890
2891 abfd = bfd_openr (args, 0);
2892 if (!abfd)
2893 {
2894 printf_filtered ("Unable to open file %s\n", args);
2895 return;
2896 }
2897
2898 if (bfd_check_format (abfd, bfd_object) == 0)
2899 {
2900 printf_filtered ("File is not an object file\n");
2901 return;
2902 }
2903
2904 /* This actually causes a download in the IDT binary format: */
2905 mips_send_command (LOAD_CMD, 0);
2906
2907 for (s = abfd->sections; s; s = s->next)
2908 {
2909 if (s->flags & SEC_LOAD)
2910 {
2911 unsigned int numbytes;
2912
2913 /* FIXME! vma too small?? */
2914 printf_filtered ("%s\t: 0x%4x .. 0x%4x ", s->name, s->vma,
2915 s->vma + s->_raw_size);
2916 gdb_flush (gdb_stdout);
2917
2918 for (i = 0; i < s->_raw_size; i += numbytes)
2919 {
2920 numbytes = min (srec_frame, s->_raw_size - i);
2921
2922 bfd_get_section_contents (abfd, s, buffer, i, numbytes);
2923
2924 reclen = mips_make_srec (srec, '3', s->vma + i, buffer, numbytes);
2925 send_srec (srec, reclen, s->vma + i);
2926
2927 if (hashmark)
2928 {
2929 putchar_unfiltered ('#');
2930 gdb_flush (gdb_stdout);
2931 }
2932
2933 } /* Per-packet (or S-record) loop */
2934
2935 putchar_unfiltered ('\n');
2936 } /* Loadable sections */
2937 }
2938 if (hashmark)
2939 putchar_unfiltered ('\n');
2940
2941 /* Write a type 7 terminator record. no data for a type 7, and there
2942 is no data, so len is 0. */
2943
2944 reclen = mips_make_srec (srec, '7', abfd->start_address, NULL, 0);
2945
2946 send_srec (srec, reclen, abfd->start_address);
2947
2948 SERIAL_FLUSH_INPUT (mips_desc);
2949 }
2950
2951 /*
2952 * mips_make_srec -- make an srecord. This writes each line, one at a
2953 * time, each with it's own header and trailer line.
2954 * An srecord looks like this:
2955 *
2956 * byte count-+ address
2957 * start ---+ | | data +- checksum
2958 * | | | |
2959 * S01000006F6B692D746573742E73726563E4
2960 * S315000448600000000000000000FC00005900000000E9
2961 * S31A0004000023C1400037DE00F023604000377B009020825000348D
2962 * S30B0004485A0000000000004E
2963 * S70500040000F6
2964 *
2965 * S<type><length><address><data><checksum>
2966 *
2967 * Where
2968 * - length
2969 * is the number of bytes following upto the checksum. Note that
2970 * this is not the number of chars following, since it takes two
2971 * chars to represent a byte.
2972 * - type
2973 * is one of:
2974 * 0) header record
2975 * 1) two byte address data record
2976 * 2) three byte address data record
2977 * 3) four byte address data record
2978 * 7) four byte address termination record
2979 * 8) three byte address termination record
2980 * 9) two byte address termination record
2981 *
2982 * - address
2983 * is the start address of the data following, or in the case of
2984 * a termination record, the start address of the image
2985 * - data
2986 * is the data.
2987 * - checksum
2988 * is the sum of all the raw byte data in the record, from the length
2989 * upwards, modulo 256 and subtracted from 255.
2990 *
2991 * This routine returns the length of the S-record.
2992 *
2993 */
2994
2995 static int
2996 mips_make_srec (buf, type, memaddr, myaddr, len)
2997 char *buf;
2998 int type;
2999 CORE_ADDR memaddr;
3000 unsigned char *myaddr;
3001 int len;
3002 {
3003 unsigned char checksum;
3004 int i;
3005
3006 /* Create the header for the srec. addr_size is the number of bytes in the address,
3007 and 1 is the number of bytes in the count. */
3008
3009 /* FIXME!! bigger buf required for 64-bit! */
3010 buf[0] = 'S';
3011 buf[1] = type;
3012 buf[2] = len + 4 + 1; /* len + 4 byte address + 1 byte checksum */
3013 /* This assumes S3 style downloads (4byte addresses). There should
3014 probably be a check, or the code changed to make it more
3015 explicit. */
3016 buf[3] = memaddr >> 24;
3017 buf[4] = memaddr >> 16;
3018 buf[5] = memaddr >> 8;
3019 buf[6] = memaddr;
3020 memcpy (&buf[7], myaddr, len);
3021
3022 /* Note that the checksum is calculated on the raw data, not the
3023 hexified data. It includes the length, address and the data
3024 portions of the packet. */
3025 checksum = 0;
3026 buf += 2; /* Point at length byte */
3027 for (i = 0; i < len + 4 + 1; i++)
3028 checksum += *buf++;
3029
3030 *buf = ~checksum;
3031
3032 return len + 8;
3033 }
3034
3035 /* The following manifest controls whether we enable the simple flow
3036 control support provided by the monitor. If enabled the code will
3037 wait for an affirmative ACK between transmitting packets. */
3038 #define DOETXACK (1)
3039
3040 /* The PMON fast-download uses an encoded packet format constructed of
3041 3byte data packets (encoded as 4 printable ASCII characters), and
3042 escape sequences (preceded by a '/'):
3043
3044 'K' clear checksum
3045 'C' compare checksum (12bit value, not included in checksum calculation)
3046 'S' define symbol name (for addr) terminated with "," and padded to 4char boundary
3047 'Z' zero fill multiple of 3bytes
3048 'B' byte (12bit encoded value, of 8bit data)
3049 'A' address (36bit encoded value)
3050 'E' define entry as original address, and exit load
3051
3052 The packets are processed in 4 character chunks, so the escape
3053 sequences that do not have any data (or variable length data)
3054 should be padded to a 4 character boundary. The decoder will give
3055 an error if the complete message block size is not a multiple of
3056 4bytes (size of record).
3057
3058 The encoding of numbers is done in 6bit fields. The 6bit value is
3059 used to index into this string to get the specific character
3060 encoding for the value: */
3061 static char encoding[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789,.";
3062
3063 /* Convert the number of bits required into an encoded number, 6bits
3064 at a time (range 0..63). Keep a checksum if required (passed
3065 pointer non-NULL). The function returns the number of encoded
3066 characters written into the buffer. */
3067 static int
3068 pmon_makeb64 (v, p, n, chksum)
3069 unsigned long v;
3070 char *p;
3071 int n;
3072 int *chksum;
3073 {
3074 int count = (n / 6);
3075
3076 if ((n % 12) != 0)
3077 {
3078 fprintf_unfiltered (gdb_stderr,
3079 "Fast encoding bitcount must be a multiple of 12bits: %dbit%s\n", n, (n == 1) ? "" : "s");
3080 return (0);
3081 }
3082 if (n > 36)
3083 {
3084 fprintf_unfiltered (gdb_stderr,
3085 "Fast encoding cannot process more than 36bits at the moment: %dbits\n", n);
3086 return (0);
3087 }
3088
3089 /* Deal with the checksum: */
3090 if (chksum != NULL)
3091 {
3092 switch (n)
3093 {
3094 case 36:
3095 *chksum += ((v >> 24) & 0xFFF);
3096 case 24:
3097 *chksum += ((v >> 12) & 0xFFF);
3098 case 12:
3099 *chksum += ((v >> 0) & 0xFFF);
3100 }
3101 }
3102
3103 do
3104 {
3105 n -= 6;
3106 *p++ = encoding[(v >> n) & 0x3F];
3107 }
3108 while (n > 0);
3109
3110 return (count);
3111 }
3112
3113 /* Shorthand function (that could be in-lined) to output the zero-fill
3114 escape sequence into the data stream. */
3115 static int
3116 pmon_zeroset (recsize, buff, amount, chksum)
3117 int recsize;
3118 char **buff;
3119 int *amount;
3120 unsigned int *chksum;
3121 {
3122 int count;
3123
3124 sprintf (*buff, "/Z");
3125 count = pmon_makeb64 (*amount, (*buff + 2), 12, chksum);
3126 *buff += (count + 2);
3127 *amount = 0;
3128 return (recsize + count + 2);
3129 }
3130
3131 static int
3132 pmon_checkset (recsize, buff, value)
3133 int recsize;
3134 char **buff;
3135 int *value;
3136 {
3137 int count;
3138
3139 /* Add the checksum (without updating the value): */
3140 sprintf (*buff, "/C");
3141 count = pmon_makeb64 (*value, (*buff + 2), 12, NULL);
3142 *buff += (count + 2);
3143 sprintf (*buff, "\n");
3144 *buff += 2; /* include zero terminator */
3145 /* Forcing a checksum validation clears the sum: */
3146 *value = 0;
3147 return (recsize + count + 3);
3148 }
3149
3150 /* Amount of padding we leave after at the end of the output buffer,
3151 for the checksum and line termination characters: */
3152 #define CHECKSIZE (4 + 4 + 4 + 2)
3153 /* zero-fill, checksum, transfer end and line termination space. */
3154
3155 /* The amount of binary data loaded from the object file in a single
3156 operation: */
3157 #define BINCHUNK (1024)
3158
3159 /* Maximum line of data accepted by the monitor: */
3160 #define MAXRECSIZE (550)
3161 /* NOTE: This constant depends on the monitor being used. This value
3162 is for PMON 5.x on the Cogent Vr4300 board. */
3163
3164 static void
3165 pmon_make_fastrec (outbuf, inbuf, inptr, inamount, recsize, csum, zerofill)
3166 char **outbuf;
3167 unsigned char *inbuf;
3168 int *inptr;
3169 int inamount;
3170 int *recsize;
3171 unsigned int *csum;
3172 unsigned int *zerofill;
3173 {
3174 int count = 0;
3175 char *p = *outbuf;
3176
3177 /* This is a simple check to ensure that our data will fit within
3178 the maximum allowable record size. Each record output is 4bytes
3179 in length. We must allow space for a pending zero fill command,
3180 the record, and a checksum record. */
3181 while ((*recsize < (MAXRECSIZE - CHECKSIZE)) && ((inamount - *inptr) > 0))
3182 {
3183 /* Process the binary data: */
3184 if ((inamount - *inptr) < 3)
3185 {
3186 if (*zerofill != 0)
3187 *recsize = pmon_zeroset (*recsize, &p, zerofill, csum);
3188 sprintf (p, "/B");
3189 count = pmon_makeb64 (inbuf[*inptr], &p[2], 12, csum);
3190 p += (2 + count);
3191 *recsize += (2 + count);
3192 (*inptr)++;
3193 }
3194 else
3195 {
3196 unsigned int value = ((inbuf[*inptr + 0] << 16) | (inbuf[*inptr + 1] << 8) | inbuf[*inptr + 2]);
3197 /* Simple check for zero data. TODO: A better check would be
3198 to check the last, and then the middle byte for being zero
3199 (if the first byte is not). We could then check for
3200 following runs of zeros, and if above a certain size it is
3201 worth the 4 or 8 character hit of the byte insertions used
3202 to pad to the start of the zeroes. NOTE: This also depends
3203 on the alignment at the end of the zero run. */
3204 if (value == 0x00000000)
3205 {
3206 (*zerofill)++;
3207 if (*zerofill == 0xFFF) /* 12bit counter */
3208 *recsize = pmon_zeroset (*recsize, &p, zerofill, csum);
3209 }
3210 else
3211 {
3212 if (*zerofill != 0)
3213 *recsize = pmon_zeroset (*recsize, &p, zerofill, csum);
3214 count = pmon_makeb64 (value, p, 24, csum);
3215 p += count;
3216 *recsize += count;
3217 }
3218 *inptr += 3;
3219 }
3220 }
3221
3222 *outbuf = p;
3223 return;
3224 }
3225
3226 static int
3227 pmon_check_ack (mesg)
3228 char *mesg;
3229 {
3230 #if defined(DOETXACK)
3231 int c;
3232
3233 if (!tftp_in_use)
3234 {
3235 c = SERIAL_READCHAR (udp_in_use ? udp_desc : mips_desc, 2);
3236 if ((c == SERIAL_TIMEOUT) || (c != 0x06))
3237 {
3238 fprintf_unfiltered (gdb_stderr,
3239 "Failed to receive valid ACK for %s\n", mesg);
3240 return (-1); /* terminate the download */
3241 }
3242 }
3243 #endif /* DOETXACK */
3244 return (0);
3245 }
3246
3247 /* pmon_download - Send a sequence of characters to the PMON download port,
3248 which is either a serial port or a UDP socket. */
3249
3250 static void
3251 pmon_start_download ()
3252 {
3253 if (tftp_in_use)
3254 {
3255 /* Create the temporary download file. */
3256 if ((tftp_file = fopen (tftp_localname, "w")) == NULL)
3257 perror_with_name (tftp_localname);
3258 }
3259 else
3260 {
3261 mips_send_command (udp_in_use ? LOAD_CMD_UDP : LOAD_CMD, 0);
3262 mips_expect ("Downloading from ");
3263 mips_expect (udp_in_use ? "udp" : "tty0");
3264 mips_expect (", ^C to abort\r\n");
3265 }
3266 }
3267
3268 static int
3269 mips_expect_download (char *string)
3270 {
3271 if (!mips_expect (string))
3272 {
3273 fprintf_unfiltered (gdb_stderr, "Load did not complete successfully.\n");
3274 if (tftp_in_use)
3275 remove (tftp_localname); /* Remove temporary file */
3276 return 0;
3277 }
3278 else
3279 return 1;
3280 }
3281
3282 static void
3283 pmon_end_download (final, bintotal)
3284 int final;
3285 int bintotal;
3286 {
3287 char hexnumber[9]; /* includes '\0' space */
3288
3289 if (tftp_in_use)
3290 {
3291 static char *load_cmd_prefix = "load -b -s ";
3292 char *cmd;
3293 struct stat stbuf;
3294
3295 /* Close off the temporary file containing the load data. */
3296 fclose (tftp_file);
3297 tftp_file = NULL;
3298
3299 /* Make the temporary file readable by the world. */
3300 if (stat (tftp_localname, &stbuf) == 0)
3301 chmod (tftp_localname, stbuf.st_mode | S_IROTH);
3302
3303 /* Must reinitialize the board to prevent PMON from crashing. */
3304 mips_send_command ("initEther\r", -1);
3305
3306 /* Send the load command. */
3307 cmd = xmalloc (strlen (load_cmd_prefix) + strlen (tftp_name) + 2);
3308 strcpy (cmd, load_cmd_prefix);
3309 strcat (cmd, tftp_name);
3310 strcat (cmd, "\r");
3311 mips_send_command (cmd, 0);
3312 free (cmd);
3313 if (!mips_expect_download ("Downloading from "))
3314 return;
3315 if (!mips_expect_download (tftp_name))
3316 return;
3317 if (!mips_expect_download (", ^C to abort\r\n"))
3318 return;
3319 }
3320
3321 /* Wait for the stuff that PMON prints after the load has completed.
3322 The timeout value for use in the tftp case (15 seconds) was picked
3323 arbitrarily but might be too small for really large downloads. FIXME. */
3324 if (mips_monitor == MON_LSI)
3325 {
3326 pmon_check_ack ("termination");
3327 mips_expect_timeout ("Entry address is ", tftp_in_use ? 15 : 2);
3328 }
3329 else
3330 mips_expect_timeout ("Entry Address = ", tftp_in_use ? 15 : 2);
3331
3332 sprintf (hexnumber, "%x", final);
3333 mips_expect (hexnumber);
3334 mips_expect ("\r\n");
3335 if (mips_monitor != MON_LSI)
3336 pmon_check_ack ("termination");
3337 mips_expect ("\r\ntotal = 0x");
3338 sprintf (hexnumber, "%x", bintotal);
3339 mips_expect (hexnumber);
3340 if (!mips_expect_download (" bytes\r\n"))
3341 return;
3342
3343 if (tftp_in_use)
3344 remove (tftp_localname); /* Remove temporary file */
3345 }
3346
3347 static void
3348 pmon_download (buffer, length)
3349 char *buffer;
3350 int length;
3351 {
3352 if (tftp_in_use)
3353 fwrite (buffer, 1, length, tftp_file);
3354 else
3355 SERIAL_WRITE (udp_in_use ? udp_desc : mips_desc, buffer, length);
3356 }
3357
3358 static void
3359 pmon_load_fast (file)
3360 char *file;
3361 {
3362 bfd *abfd;
3363 asection *s;
3364 unsigned char *binbuf;
3365 char *buffer;
3366 int reclen;
3367 unsigned int csum = 0;
3368 int hashmark = !tftp_in_use;
3369 int bintotal = 0;
3370 int final = 0;
3371 int finished = 0;
3372
3373 buffer = (char *) xmalloc (MAXRECSIZE + 1);
3374 binbuf = (unsigned char *) xmalloc (BINCHUNK);
3375
3376 abfd = bfd_openr (file, 0);
3377 if (!abfd)
3378 {
3379 printf_filtered ("Unable to open file %s\n", file);
3380 return;
3381 }
3382
3383 if (bfd_check_format (abfd, bfd_object) == 0)
3384 {
3385 printf_filtered ("File is not an object file\n");
3386 return;
3387 }
3388
3389 /* Setup the required download state: */
3390 mips_send_command ("set dlproto etxack\r", -1);
3391 mips_send_command ("set dlecho off\r", -1);
3392 /* NOTE: We get a "cannot set variable" message if the variable is
3393 already defined to have the argument we give. The code doesn't
3394 care, since it just scans to the next prompt anyway. */
3395 /* Start the download: */
3396 pmon_start_download ();
3397
3398 /* Zero the checksum */
3399 sprintf (buffer, "/Kxx\n");
3400 reclen = strlen (buffer);
3401 pmon_download (buffer, reclen);
3402 finished = pmon_check_ack ("/Kxx");
3403
3404 for (s = abfd->sections; s && !finished; s = s->next)
3405 if (s->flags & SEC_LOAD) /* only deal with loadable sections */
3406 {
3407 bintotal += s->_raw_size;
3408 final = (s->vma + s->_raw_size);
3409
3410 printf_filtered ("%s\t: 0x%4x .. 0x%4x ", s->name, (unsigned int) s->vma,
3411 (unsigned int) (s->vma + s->_raw_size));
3412 gdb_flush (gdb_stdout);
3413
3414 /* Output the starting address */
3415 sprintf (buffer, "/A");
3416 reclen = pmon_makeb64 (s->vma, &buffer[2], 36, &csum);
3417 buffer[2 + reclen] = '\n';
3418 buffer[3 + reclen] = '\0';
3419 reclen += 3; /* for the initial escape code and carriage return */
3420 pmon_download (buffer, reclen);
3421 finished = pmon_check_ack ("/A");
3422
3423 if (!finished)
3424 {
3425 unsigned int binamount;
3426 unsigned int zerofill = 0;
3427 char *bp = buffer;
3428 unsigned int i;
3429
3430 reclen = 0;
3431
3432 for (i = 0; ((i < s->_raw_size) && !finished); i += binamount)
3433 {
3434 int binptr = 0;
3435
3436 binamount = min (BINCHUNK, s->_raw_size - i);
3437
3438 bfd_get_section_contents (abfd, s, binbuf, i, binamount);
3439
3440 /* This keeps a rolling checksum, until we decide to output
3441 the line: */
3442 for (; ((binamount - binptr) > 0);)
3443 {
3444 pmon_make_fastrec (&bp, binbuf, &binptr, binamount, &reclen, &csum, &zerofill);
3445 if (reclen >= (MAXRECSIZE - CHECKSIZE))
3446 {
3447 reclen = pmon_checkset (reclen, &bp, &csum);
3448 pmon_download (buffer, reclen);
3449 finished = pmon_check_ack ("data record");
3450 if (finished)
3451 {
3452 zerofill = 0; /* do not transmit pending zerofills */
3453 break;
3454 }
3455
3456 if (hashmark)
3457 {
3458 putchar_unfiltered ('#');
3459 gdb_flush (gdb_stdout);
3460 }
3461
3462 bp = buffer;
3463 reclen = 0; /* buffer processed */
3464 }
3465 }
3466 }
3467
3468 /* Ensure no out-standing zerofill requests: */
3469 if (zerofill != 0)
3470 reclen = pmon_zeroset (reclen, &bp, &zerofill, &csum);
3471
3472 /* and then flush the line: */
3473 if (reclen > 0)
3474 {
3475 reclen = pmon_checkset (reclen, &bp, &csum);
3476 /* Currently pmon_checkset outputs the line terminator by
3477 default, so we write out the buffer so far: */
3478 pmon_download (buffer, reclen);
3479 finished = pmon_check_ack ("record remnant");
3480 }
3481 }
3482
3483 putchar_unfiltered ('\n');
3484 }
3485
3486 /* Terminate the transfer. We know that we have an empty output
3487 buffer at this point. */
3488 sprintf (buffer, "/E/E\n"); /* include dummy padding characters */
3489 reclen = strlen (buffer);
3490 pmon_download (buffer, reclen);
3491
3492 if (finished)
3493 { /* Ignore the termination message: */
3494 SERIAL_FLUSH_INPUT (udp_in_use ? udp_desc : mips_desc);
3495 }
3496 else
3497 { /* Deal with termination message: */
3498 pmon_end_download (final, bintotal);
3499 }
3500
3501 return;
3502 }
3503
3504 /* mips_load -- download a file. */
3505
3506 static void
3507 mips_load (file, from_tty)
3508 char *file;
3509 int from_tty;
3510 {
3511 /* Get the board out of remote debugging mode. */
3512 if (mips_exit_debug ())
3513 error ("mips_load: Couldn't get into monitor mode.");
3514
3515 if (mips_monitor != MON_IDT)
3516 pmon_load_fast (file);
3517 else
3518 mips_load_srec (file);
3519
3520 mips_initialize ();
3521
3522 /* Finally, make the PC point at the start address */
3523 if (mips_monitor != MON_IDT)
3524 {
3525 /* Work around problem where PMON monitor updates the PC after a load
3526 to a different value than GDB thinks it has. The following ensures
3527 that the write_pc() WILL update the PC value: */
3528 register_valid[PC_REGNUM] = 0;
3529 }
3530 if (exec_bfd)
3531 write_pc (bfd_get_start_address (exec_bfd));
3532
3533 inferior_pid = 0; /* No process now */
3534
3535 /* This is necessary because many things were based on the PC at the time that
3536 we attached to the monitor, which is no longer valid now that we have loaded
3537 new code (and just changed the PC). Another way to do this might be to call
3538 normal_stop, except that the stack may not be valid, and things would get
3539 horribly confused... */
3540
3541 clear_symtab_users ();
3542 }
3543
3544
3545 /* Pass the command argument as a packet to PMON verbatim. */
3546
3547 static void
3548 pmon_command (args, from_tty)
3549 char *args;
3550 int from_tty;
3551 {
3552 char buf[DATA_MAXLEN + 1];
3553 int rlen;
3554
3555 sprintf (buf, "0x0 %s", args);
3556 mips_send_packet (buf, 1);
3557 printf_filtered ("Send packet: %s\n", buf);
3558
3559 rlen = mips_receive_packet (buf, 1, mips_receive_wait);
3560 buf[rlen] = '\0';
3561 printf_filtered ("Received packet: %s\n", buf);
3562 }
3563 \f
3564 void
3565 _initialize_remote_mips ()
3566 {
3567 /* Initialize the fields in mips_ops that are common to all four targets. */
3568 mips_ops.to_longname = "Remote MIPS debugging over serial line";
3569 mips_ops.to_close = mips_close;
3570 mips_ops.to_detach = mips_detach;
3571 mips_ops.to_resume = mips_resume;
3572 mips_ops.to_fetch_registers = mips_fetch_registers;
3573 mips_ops.to_store_registers = mips_store_registers;
3574 mips_ops.to_prepare_to_store = mips_prepare_to_store;
3575 mips_ops.to_xfer_memory = mips_xfer_memory;
3576 mips_ops.to_files_info = mips_files_info;
3577 mips_ops.to_insert_breakpoint = mips_insert_breakpoint;
3578 mips_ops.to_remove_breakpoint = mips_remove_breakpoint;
3579 mips_ops.to_kill = mips_kill;
3580 mips_ops.to_load = mips_load;
3581 mips_ops.to_create_inferior = mips_create_inferior;
3582 mips_ops.to_mourn_inferior = mips_mourn_inferior;
3583 mips_ops.to_stratum = process_stratum;
3584 mips_ops.to_has_all_memory = 1;
3585 mips_ops.to_has_memory = 1;
3586 mips_ops.to_has_stack = 1;
3587 mips_ops.to_has_registers = 1;
3588 mips_ops.to_has_execution = 1;
3589 mips_ops.to_magic = OPS_MAGIC;
3590
3591 /* Copy the common fields to all four target vectors. */
3592 pmon_ops = ddb_ops = lsi_ops = mips_ops;
3593
3594 /* Initialize target-specific fields in the target vectors. */
3595 mips_ops.to_shortname = "mips";
3596 mips_ops.to_doc = "\
3597 Debug a board using the MIPS remote debugging protocol over a serial line.\n\
3598 The argument is the device it is connected to or, if it contains a colon,\n\
3599 HOST:PORT to access a board over a network";
3600 mips_ops.to_open = mips_open;
3601 mips_ops.to_wait = mips_wait;
3602
3603 pmon_ops.to_shortname = "pmon";
3604 pmon_ops.to_doc = "\
3605 Debug a board using the PMON MIPS remote debugging protocol over a serial\n\
3606 line. The argument is the device it is connected to or, if it contains a\n\
3607 colon, HOST:PORT to access a board over a network";
3608 pmon_ops.to_open = pmon_open;
3609 pmon_ops.to_wait = mips_wait;
3610
3611 ddb_ops.to_shortname = "ddb";
3612 ddb_ops.to_doc = "\
3613 Debug a board using the PMON MIPS remote debugging protocol over a serial\n\
3614 line. The first argument is the device it is connected to or, if it contains\n\
3615 a colon, HOST:PORT to access a board over a network. The optional second\n\
3616 parameter is the temporary file in the form HOST:FILENAME to be used for\n\
3617 TFTP downloads to the board. The optional third parameter is the local name\n\
3618 of the TFTP temporary file, if it differs from the filename seen by the board.";
3619 ddb_ops.to_open = ddb_open;
3620 ddb_ops.to_wait = mips_wait;
3621
3622 lsi_ops.to_shortname = "lsi";
3623 lsi_ops.to_doc = pmon_ops.to_doc;
3624 lsi_ops.to_open = lsi_open;
3625 lsi_ops.to_wait = mips_wait;
3626
3627 /* Add the targets. */
3628 add_target (&mips_ops);
3629 add_target (&pmon_ops);
3630 add_target (&ddb_ops);
3631 add_target (&lsi_ops);
3632
3633 add_show_from_set (
3634 add_set_cmd ("timeout", no_class, var_zinteger,
3635 (char *) &mips_receive_wait,
3636 "Set timeout in seconds for remote MIPS serial I/O.",
3637 &setlist),
3638 &showlist);
3639
3640 add_show_from_set (
3641 add_set_cmd ("retransmit-timeout", no_class, var_zinteger,
3642 (char *) &mips_retransmit_wait,
3643 "Set retransmit timeout in seconds for remote MIPS serial I/O.\n\
3644 This is the number of seconds to wait for an acknowledgement to a packet\n\
3645 before resending the packet.", &setlist),
3646 &showlist);
3647
3648 add_show_from_set (
3649 add_set_cmd ("syn-garbage-limit", no_class, var_zinteger,
3650 (char *) &mips_syn_garbage,
3651 "Set the maximum number of characters to ignore when scanning for a SYN.\n\
3652 This is the maximum number of characters GDB will ignore when trying to\n\
3653 synchronize with the remote system. A value of -1 means that there is no limit\n\
3654 (Note that these characters are printed out even though they are ignored.)",
3655 &setlist),
3656 &showlist);
3657
3658 add_show_from_set
3659 (add_set_cmd ("monitor-prompt", class_obscure, var_string,
3660 (char *) &mips_monitor_prompt,
3661 "Set the prompt that GDB expects from the monitor.",
3662 &setlist),
3663 &showlist);
3664
3665 add_show_from_set (
3666 add_set_cmd ("monitor-warnings", class_obscure, var_zinteger,
3667 (char *) &monitor_warnings,
3668 "Set printing of monitor warnings.\n"
3669 "When enabled, monitor warnings about hardware breakpoints "
3670 "will be displayed.",
3671 &setlist),
3672 &showlist);
3673
3674 add_com ("pmon <command>", class_obscure, pmon_command,
3675 "Send a packet to PMON (must be in debug mode).");
3676 }
This page took 0.108634 seconds and 4 git commands to generate.