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
6 This file is part of GDB.
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.
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.
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, Boston, MA 02111-1307, USA. */
31 #include "remote-utils.h"
34 #ifdef ANSI_PROTOTYPES
40 extern char *mips_read_processor_type PARAMS ((void));
42 extern void mips_set_processor_type_command PARAMS ((char *, int));
45 /* Prototypes for local functions. */
47 static int mips_readchar PARAMS ((int timeout));
49 static int mips_receive_header PARAMS ((unsigned char *hdr, int *pgarbage,
50 int ch, int timeout));
52 static int mips_receive_trailer PARAMS ((unsigned char *trlr, int *pgarbage,
53 int *pch, int timeout));
55 static int mips_cksum PARAMS ((const unsigned char *hdr,
56 const unsigned char *data,
59 static void mips_send_packet PARAMS ((const char *s, int get_ack));
61 static void mips_send_command PARAMS ((const char *cmd, int prompt));
63 static int mips_receive_packet PARAMS ((char *buff, int throw_error,
66 static int mips_request PARAMS ((int cmd, unsigned int addr,
67 unsigned int data, int *perr, int timeout,
70 static void mips_initialize PARAMS ((void));
72 static void mips_open PARAMS ((char *name, int from_tty));
74 static void pmon_open PARAMS ((char *name, int from_tty));
76 static void mips_close PARAMS ((int quitting));
78 static void mips_detach PARAMS ((char *args, int from_tty));
80 static void mips_resume PARAMS ((int pid, int step,
81 enum target_signal siggnal));
83 static int mips_wait PARAMS ((int pid, struct target_waitstatus *status));
85 static int pmon_wait PARAMS ((int pid, struct target_waitstatus *status));
87 static int mips_map_regno PARAMS ((int regno));
89 static void mips_fetch_registers PARAMS ((int regno));
91 static void mips_prepare_to_store PARAMS ((void));
93 static void mips_store_registers PARAMS ((int regno));
95 static int mips_fetch_word PARAMS ((CORE_ADDR addr));
97 static int mips_store_word PARAMS ((CORE_ADDR addr, int value,
100 static int mips_xfer_memory PARAMS ((CORE_ADDR memaddr, char *myaddr, int len,
101 int write, struct target_ops *ignore));
103 static void mips_files_info PARAMS ((struct target_ops *ignore));
105 static void mips_create_inferior PARAMS ((char *execfile, char *args,
108 static void mips_mourn_inferior PARAMS ((void));
110 static int pmon_makeb64 PARAMS ((unsigned long v, char *p, int n, int *chksum));
112 static int pmon_zeroset PARAMS ((int recsize, char **buff, int *amount,
113 unsigned int *chksum));
115 static int pmon_checkset PARAMS ((int recsize, char **buff, int *value));
117 static void pmon_make_fastrec PARAMS ((char **outbuf, unsigned char *inbuf,
118 int *inptr, int inamount, int *recsize,
119 unsigned int *csum, unsigned int *zerofill));
121 static int pmon_check_ack PARAMS ((void));
123 static void pmon_load_fast PARAMS ((char *file));
125 static void mips_load PARAMS ((char *file, int from_tty));
127 static int mips_make_srec PARAMS ((char *buffer, int type, CORE_ADDR memaddr,
128 unsigned char *myaddr, int len));
130 static int common_breakpoint PARAMS ((int cmd, CORE_ADDR addr, CORE_ADDR mask,
133 static void common_open PARAMS ((struct target_ops *ops, char *name,
135 /* Forward declarations. */
136 extern struct target_ops mips_ops;
137 extern struct target_ops pmon_ops;
139 /* The MIPS remote debugging interface is built on top of a simple
140 packet protocol. Each packet is organized as follows:
142 SYN The first character is always a SYN (ASCII 026, or ^V). SYN
143 may not appear anywhere else in the packet. Any time a SYN is
144 seen, a new packet should be assumed to have begun.
147 This byte contains the upper five bits of the logical length
148 of the data section, plus a single bit indicating whether this
149 is a data packet or an acknowledgement. The documentation
150 indicates that this bit is 1 for a data packet, but the actual
151 board uses 1 for an acknowledgement. The value of the byte is
152 0x40 + (ack ? 0x20 : 0) + (len >> 6)
153 (we always have 0 <= len < 1024). Acknowledgement packets do
154 not carry data, and must have a data length of 0.
156 LEN1 This byte contains the lower six bits of the logical length of
157 the data section. The value is
160 SEQ This byte contains the six bit sequence number of the packet.
163 An acknowlegment packet contains the sequence number of the
164 packet being acknowledged plus 1 modulo 64. Data packets are
165 transmitted in sequence. There may only be one outstanding
166 unacknowledged data packet at a time. The sequence numbers
167 are independent in each direction. If an acknowledgement for
168 the previous packet is received (i.e., an acknowledgement with
169 the sequence number of the packet just sent) the packet just
170 sent should be retransmitted. If no acknowledgement is
171 received within a timeout period, the packet should be
172 retransmitted. This has an unfortunate failure condition on a
173 high-latency line, as a delayed acknowledgement may lead to an
174 endless series of duplicate packets.
176 DATA The actual data bytes follow. The following characters are
177 escaped inline with DLE (ASCII 020, or ^P):
183 The additional DLE characters are not counted in the logical
184 length stored in the TYPE_LEN and LEN1 bytes.
189 These bytes contain an 18 bit checksum of the complete
190 contents of the packet excluding the SEQ byte and the
191 CSUM[123] bytes. The checksum is simply the twos complement
192 addition of all the bytes treated as unsigned characters. The
193 values of the checksum bytes are:
194 CSUM1: 0x40 + ((cksum >> 12) & 0x3f)
195 CSUM2: 0x40 + ((cksum >> 6) & 0x3f)
196 CSUM3: 0x40 + (cksum & 0x3f)
198 It happens that the MIPS remote debugging protocol always
199 communicates with ASCII strings. Because of this, this
200 implementation doesn't bother to handle the DLE quoting mechanism,
201 since it will never be required. */
203 /* The SYN character which starts each packet. */
206 /* The 0x40 used to offset each packet (this value ensures that all of
207 the header and trailer bytes, other than SYN, are printable ASCII
209 #define HDR_OFFSET 0x40
211 /* The indices of the bytes in the packet header. */
212 #define HDR_INDX_SYN 0
213 #define HDR_INDX_TYPE_LEN 1
214 #define HDR_INDX_LEN1 2
215 #define HDR_INDX_SEQ 3
218 /* The data/ack bit in the TYPE_LEN header byte. */
219 #define TYPE_LEN_DA_BIT 0x20
220 #define TYPE_LEN_DATA 0
221 #define TYPE_LEN_ACK TYPE_LEN_DA_BIT
223 /* How to compute the header bytes. */
224 #define HDR_SET_SYN(data, len, seq) (SYN)
225 #define HDR_SET_TYPE_LEN(data, len, seq) \
227 + ((data) ? TYPE_LEN_DATA : TYPE_LEN_ACK) \
228 + (((len) >> 6) & 0x1f))
229 #define HDR_SET_LEN1(data, len, seq) (HDR_OFFSET + ((len) & 0x3f))
230 #define HDR_SET_SEQ(data, len, seq) (HDR_OFFSET + (seq))
232 /* Check that a header byte is reasonable. */
233 #define HDR_CHECK(ch) (((ch) & HDR_OFFSET) == HDR_OFFSET)
235 /* Get data from the header. These macros evaluate their argument
237 #define HDR_IS_DATA(hdr) \
238 (((hdr)[HDR_INDX_TYPE_LEN] & TYPE_LEN_DA_BIT) == TYPE_LEN_DATA)
239 #define HDR_GET_LEN(hdr) \
240 ((((hdr)[HDR_INDX_TYPE_LEN] & 0x1f) << 6) + (((hdr)[HDR_INDX_LEN1] & 0x3f)))
241 #define HDR_GET_SEQ(hdr) ((hdr)[HDR_INDX_SEQ] & 0x3f)
243 /* The maximum data length. */
244 #define DATA_MAXLEN 1023
246 /* The trailer offset. */
247 #define TRLR_OFFSET HDR_OFFSET
249 /* The indices of the bytes in the packet trailer. */
250 #define TRLR_INDX_CSUM1 0
251 #define TRLR_INDX_CSUM2 1
252 #define TRLR_INDX_CSUM3 2
253 #define TRLR_LENGTH 3
255 /* How to compute the trailer bytes. */
256 #define TRLR_SET_CSUM1(cksum) (TRLR_OFFSET + (((cksum) >> 12) & 0x3f))
257 #define TRLR_SET_CSUM2(cksum) (TRLR_OFFSET + (((cksum) >> 6) & 0x3f))
258 #define TRLR_SET_CSUM3(cksum) (TRLR_OFFSET + (((cksum) ) & 0x3f))
260 /* Check that a trailer byte is reasonable. */
261 #define TRLR_CHECK(ch) (((ch) & TRLR_OFFSET) == TRLR_OFFSET)
263 /* Get data from the trailer. This evaluates its argument multiple
265 #define TRLR_GET_CKSUM(trlr) \
266 ((((trlr)[TRLR_INDX_CSUM1] & 0x3f) << 12) \
267 + (((trlr)[TRLR_INDX_CSUM2] & 0x3f) << 6) \
268 + ((trlr)[TRLR_INDX_CSUM3] & 0x3f))
270 /* The sequence number modulos. */
271 #define SEQ_MODULOS (64)
273 enum mips_monitor_type {
274 /* IDT/SIM monitor being used: */
276 /* PMON monitor being used: */
278 /* Last and unused value, for sizing vectors, etc. */
281 static enum mips_monitor_type mips_monitor = MON_LAST;
283 /* The default monitor prompt text: */
284 static char *mips_monitor_prompt = TARGET_MONITOR_PROMPT;
285 /* For the Cogent PMON world this is still not ideal. The default
286 prompt is "PMON> ", unfortunately the user can change the prompt
287 and the new prompt will survive over a power-cycle (EEPROM). This
288 means that the code should really force the monitor prompt to a
289 known value as the very first action, and that the
290 "mips_monitor_prompt" support is not needed... since the prompt
291 could be explicitly set to TARGET_MONITOR_PROMPT (even though it
292 may be the prompt for a different monitor). However, this will
293 require changing the mips_initialize reset sequence. (TODO) */
295 /* Set to 1 if the target is open. */
296 static int mips_is_open;
298 /* Currently active target description (if mips_is_open == 1) */
299 static struct target_ops *current_ops;
301 /* Set to 1 while the connection is being initialized. */
302 static int mips_initializing;
304 /* The next sequence number to send. */
305 static unsigned int mips_send_seq;
307 /* The next sequence number we expect to receive. */
308 static unsigned int mips_receive_seq;
310 /* The time to wait before retransmitting a packet, in seconds. */
311 static int mips_retransmit_wait = 3;
313 /* The number of times to try retransmitting a packet before giving up. */
314 static int mips_send_retries = 10;
316 /* The number of garbage characters to accept when looking for an
317 SYN for the next packet. */
318 static int mips_syn_garbage = 1050;
320 /* The time to wait for a packet, in seconds. */
321 static int mips_receive_wait = 5;
323 /* Set if we have sent a packet to the board but have not yet received
325 static int mips_need_reply = 0;
327 /* Handle used to access serial I/O stream. */
328 static serial_t mips_desc;
330 /* Counts the number of times the user tried to interrupt the target (usually
332 static int interrupt_count;
334 /* If non-zero, means that the target is running. */
335 static int mips_wait_flag = 0;
337 /* If non-zero, monitor supports breakpoint commands. */
338 static monitor_supports_breakpoints = 0;
340 /* Data cache header. */
342 static DCACHE *mips_dcache;
344 /* Non-zero means that we've just hit a read or write watchpoint */
345 static int hit_watchpoint;
347 /* Handle low-level error that we can't recover from. Note that just
348 error()ing out from target_wait or some such low-level place will cause
349 all hell to break loose--the rest of GDB will tend to get left in an
350 inconsistent state. */
353 #ifdef ANSI_PROTOTYPES
354 mips_error (char *string, ...)
356 mips_error (va_alist)
362 #ifdef ANSI_PROTOTYPES
363 va_start (args, string);
367 string = va_arg (args, char *);
370 target_terminal_ours ();
371 wrap_here(""); /* Force out any buffered output */
372 gdb_flush (gdb_stdout);
374 fprintf_filtered (gdb_stderr, error_pre_print);
375 vfprintf_filtered (gdb_stderr, string, args);
376 fprintf_filtered (gdb_stderr, "\n");
378 gdb_flush (gdb_stderr);
380 /* Clean up in such a way that mips_close won't try to talk to the
381 board (it almost surely won't work since we weren't able to talk to
384 SERIAL_CLOSE (mips_desc);
386 printf_unfiltered ("Ending remote MIPS debugging.\n");
387 target_mourn_inferior ();
389 return_to_top_level (RETURN_ERROR);
392 /* Wait until STRING shows up in mips_desc. Returns 1 if successful, else 0 if
406 /* Must use SERIAL_READCHAR here cuz mips_readchar would get confused if we
407 were waiting for the mips_monitor_prompt... */
409 c = SERIAL_READCHAR (mips_desc, 2);
411 if (c == SERIAL_TIMEOUT)
431 /* Read the required number of characters into the given buffer (which
432 is assumed to be large enough). The only failure is a timeout. */
434 mips_getstring (string, n)
444 c = SERIAL_READCHAR (mips_desc, 2);
446 if (c == SERIAL_TIMEOUT) {
447 fprintf_unfiltered (stderr, "Failed to read %d characters from target (TIMEOUT)\n", n);
458 /* Read a character from the remote, aborting on error. Returns
459 SERIAL_TIMEOUT on timeout (since that's what SERIAL_READCHAR
460 returns). FIXME: If we see the string mips_monitor_prompt from
461 the board, then we are debugging on the main console port, and we
462 have somehow dropped out of remote debugging mode. In this case,
463 we automatically go back in to remote debugging mode. This is a
464 hack, put in because I can't find any way for a program running on
465 the remote board to terminate without also ending remote debugging
466 mode. I assume users won't have any trouble with this; for one
467 thing, the IDT documentation generally assumes that the remote
468 debugging port is not the console port. This is, however, very
469 convenient for DejaGnu when you only have one connected serial
473 mips_readchar (timeout)
477 static int state = 0;
478 static int mips_monitor_prompt_len = -1;
480 /* NASTY, since we assume that the prompt does not change after the
481 first mips_readchar call: */
482 if (mips_monitor_prompt_len = -1)
483 mips_monitor_prompt_len = strlen(mips_monitor_prompt);
485 #ifdef MAINTENANCE_CMDS
490 if (i == -1 && watchdog > 0)
495 if (state == mips_monitor_prompt_len)
497 ch = SERIAL_READCHAR (mips_desc, timeout);
498 #ifdef MAINTENANCE_CMDS
499 if (ch == SERIAL_TIMEOUT && timeout == -1) /* Watchdog went off */
501 target_mourn_inferior ();
502 error ("Watchdog has expired. Target detached.\n");
505 if (ch == SERIAL_EOF)
506 mips_error ("End of file from remote");
507 if (ch == SERIAL_ERROR)
508 mips_error ("Error reading from remote: %s", safe_strerror (errno));
509 if (remote_debug > 1)
511 /* Don't use _filtered; we can't deal with a QUIT out of
512 target_wait, and I think this might be called from there. */
513 if (ch != SERIAL_TIMEOUT)
514 printf_unfiltered ("Read '%c' %d 0x%x\n", ch, ch, ch);
516 printf_unfiltered ("Timed out in read\n");
519 /* If we have seen mips_monitor_prompt and we either time out, or
520 we see a @ (which was echoed from a packet we sent), reset the
521 board as described above. The first character in a packet after
522 the SYN (which is not echoed) is always an @ unless the packet is
523 more than 64 characters long, which ours never are. */
524 if ((ch == SERIAL_TIMEOUT || ch == '@')
525 && state == mips_monitor_prompt_len
526 && ! mips_initializing)
528 if (remote_debug > 0)
529 /* Don't use _filtered; we can't deal with a QUIT out of
530 target_wait, and I think this might be called from there. */
531 printf_unfiltered ("Reinitializing MIPS debugging mode\n");
538 /* At this point, about the only thing we can do is abort the command
539 in progress and get back to command level as quickly as possible. */
541 error ("Remote board reset, debug protocol re-initialized.");
544 if (ch == mips_monitor_prompt[state])
552 /* Get a packet header, putting the data in the supplied buffer.
553 PGARBAGE is a pointer to the number of garbage characters received
554 so far. CH is the last character received. Returns 0 for success,
555 or -1 for timeout. */
558 mips_receive_header (hdr, pgarbage, ch, timeout)
568 /* Wait for a SYN. mips_syn_garbage is intended to prevent
569 sitting here indefinitely if the board sends us one garbage
570 character per second. ch may already have a value from the
571 last time through the loop. */
574 ch = mips_readchar (timeout);
575 if (ch == SERIAL_TIMEOUT)
579 /* Printing the character here lets the user of gdb see
580 what the program is outputting, if the debugging is
581 being done on the console port. Don't use _filtered;
582 we can't deal with a QUIT out of target_wait. */
583 if (! mips_initializing || remote_debug > 0)
585 /* Note that the host's idea of newline may not
586 correspond to the target's idea, so recognize
587 newline by its actual ASCII code, but write it
588 out using the \n notation. */
589 if (ch < 0x20 && ch != '\012')
591 putchar_unfiltered ('^');
592 putchar_unfiltered (ch + 0x40);
594 else if (ch == '\012')
595 putchar_unfiltered ('\n');
597 putchar_unfiltered (ch);
598 gdb_flush (gdb_stdout);
602 if (mips_syn_garbage > 0
603 && *pgarbage > mips_syn_garbage)
604 mips_error ("Debug protocol failure: more than %d characters before a sync.",
609 /* Get the packet header following the SYN. */
610 for (i = 1; i < HDR_LENGTH; i++)
612 ch = mips_readchar (timeout);
613 if (ch == SERIAL_TIMEOUT)
615 /* Make sure this is a header byte. */
616 if (ch == SYN || ! HDR_CHECK (ch))
622 /* If we got the complete header, we can return. Otherwise we
623 loop around and keep looking for SYN. */
629 /* Get a packet header, putting the data in the supplied buffer.
630 PGARBAGE is a pointer to the number of garbage characters received
631 so far. The last character read is returned in *PCH. Returns 0
632 for success, -1 for timeout, -2 for error. */
635 mips_receive_trailer (trlr, pgarbage, pch, timeout)
644 for (i = 0; i < TRLR_LENGTH; i++)
646 ch = mips_readchar (timeout);
648 if (ch == SERIAL_TIMEOUT)
650 if (! TRLR_CHECK (ch))
657 /* Get the checksum of a packet. HDR points to the packet header.
658 DATA points to the packet data. LEN is the length of DATA. */
661 mips_cksum (hdr, data, len)
662 const unsigned char *hdr;
663 const unsigned char *data;
666 register const unsigned char *p;
672 /* The initial SYN is not included in the checksum. */
686 /* Send a packet containing the given ASCII string. */
689 mips_send_packet (s, get_ack)
694 unsigned char *packet;
699 if (len > DATA_MAXLEN)
700 mips_error ("MIPS protocol data packet too long: %s", s);
702 packet = (unsigned char *) alloca (HDR_LENGTH + len + TRLR_LENGTH + 1);
704 packet[HDR_INDX_SYN] = HDR_SET_SYN (1, len, mips_send_seq);
705 packet[HDR_INDX_TYPE_LEN] = HDR_SET_TYPE_LEN (1, len, mips_send_seq);
706 packet[HDR_INDX_LEN1] = HDR_SET_LEN1 (1, len, mips_send_seq);
707 packet[HDR_INDX_SEQ] = HDR_SET_SEQ (1, len, mips_send_seq);
709 memcpy (packet + HDR_LENGTH, s, len);
711 cksum = mips_cksum (packet, packet + HDR_LENGTH, len);
712 packet[HDR_LENGTH + len + TRLR_INDX_CSUM1] = TRLR_SET_CSUM1 (cksum);
713 packet[HDR_LENGTH + len + TRLR_INDX_CSUM2] = TRLR_SET_CSUM2 (cksum);
714 packet[HDR_LENGTH + len + TRLR_INDX_CSUM3] = TRLR_SET_CSUM3 (cksum);
716 /* Increment the sequence number. This will set mips_send_seq to
717 the sequence number we expect in the acknowledgement. */
718 mips_send_seq = (mips_send_seq + 1) % SEQ_MODULOS;
720 /* We can only have one outstanding data packet, so we just wait for
721 the acknowledgement here. Keep retransmitting the packet until
722 we get one, or until we've tried too many times. */
723 for (try = 0; try < mips_send_retries; try++)
728 if (remote_debug > 0)
730 /* Don't use _filtered; we can't deal with a QUIT out of
731 target_wait, and I think this might be called from there. */
732 packet[HDR_LENGTH + len + TRLR_LENGTH] = '\0';
733 printf_unfiltered ("Writing \"%s\"\n", packet + 1);
736 if (SERIAL_WRITE (mips_desc, packet,
737 HDR_LENGTH + len + TRLR_LENGTH) != 0)
738 mips_error ("write to target failed: %s", safe_strerror (errno));
747 unsigned char hdr[HDR_LENGTH + 1];
748 unsigned char trlr[TRLR_LENGTH + 1];
752 /* Get the packet header. If we time out, resend the data
754 err = mips_receive_header (hdr, &garbage, ch, mips_retransmit_wait);
760 /* If we get a data packet, assume it is a duplicate and
761 ignore it. FIXME: If the acknowledgement is lost, this
762 data packet may be the packet the remote sends after the
764 if (HDR_IS_DATA (hdr)) {
767 /* Ignore any errors raised whilst attempting to ignore
770 len = HDR_GET_LEN (hdr);
772 for (i = 0; i < len; i++)
776 rch = mips_readchar (2);
782 if (rch == SERIAL_TIMEOUT)
784 /* ignore the character */
788 (void) mips_receive_trailer (trlr, &garbage, &ch, 2);
790 /* We don't bother checking the checksum, or providing an
791 ACK to the packet. */
795 /* If the length is not 0, this is a garbled packet. */
796 if (HDR_GET_LEN (hdr) != 0)
799 /* Get the packet trailer. */
800 err = mips_receive_trailer (trlr, &garbage, &ch,
801 mips_retransmit_wait);
803 /* If we timed out, resend the data packet. */
807 /* If we got a bad character, reread the header. */
811 /* If the checksum does not match the trailer checksum, this
812 is a bad packet; ignore it. */
813 if (mips_cksum (hdr, (unsigned char *) NULL, 0)
814 != TRLR_GET_CKSUM (trlr))
817 if (remote_debug > 0)
819 hdr[HDR_LENGTH] = '\0';
820 trlr[TRLR_LENGTH] = '\0';
821 /* Don't use _filtered; we can't deal with a QUIT out of
822 target_wait, and I think this might be called from there. */
823 printf_unfiltered ("Got ack %d \"%s%s\"\n",
824 HDR_GET_SEQ (hdr), hdr + 1, trlr);
827 /* If this ack is for the current packet, we're done. */
828 seq = HDR_GET_SEQ (hdr);
829 if (seq == mips_send_seq)
832 /* If this ack is for the last packet, resend the current
834 if ((seq + 1) % SEQ_MODULOS == mips_send_seq)
837 /* Otherwise this is a bad ack; ignore it. Increment the
838 garbage count to ensure that we do not stay in this loop
844 mips_error ("Remote did not acknowledge packet");
847 /* Receive and acknowledge a packet, returning the data in BUFF (which
848 should be DATA_MAXLEN + 1 bytes). The protocol documentation
849 implies that only the sender retransmits packets, so this code just
850 waits silently for a packet. It returns the length of the received
851 packet. If THROW_ERROR is nonzero, call error() on errors. If not,
852 don't print an error message and return -1. */
855 mips_receive_packet (buff, throw_error, timeout)
863 unsigned char ack[HDR_LENGTH + TRLR_LENGTH + 1];
870 unsigned char hdr[HDR_LENGTH];
871 unsigned char trlr[TRLR_LENGTH];
875 if (mips_receive_header (hdr, &garbage, ch, timeout) != 0)
878 mips_error ("Timed out waiting for remote packet");
885 /* An acknowledgement is probably a duplicate; ignore it. */
886 if (! HDR_IS_DATA (hdr))
888 len = HDR_GET_LEN (hdr);
889 /* Check if the length is valid for an ACK, we may aswell
890 try and read the remainder of the packet: */
893 /* Ignore the error condition, since we are going to
894 ignore the packet anyway. */
895 (void) mips_receive_trailer (trlr, &garbage, &ch, timeout);
897 /* Don't use _filtered; we can't deal with a QUIT out of
898 target_wait, and I think this might be called from there. */
899 if (remote_debug > 0)
900 printf_unfiltered ("Ignoring unexpected ACK\n");
904 len = HDR_GET_LEN (hdr);
905 for (i = 0; i < len; i++)
909 rch = mips_readchar (timeout);
915 if (rch == SERIAL_TIMEOUT)
918 mips_error ("Timed out waiting for remote packet");
927 /* Don't use _filtered; we can't deal with a QUIT out of
928 target_wait, and I think this might be called from there. */
929 if (remote_debug > 0)
930 printf_unfiltered ("Got new SYN after %d chars (wanted %d)\n",
935 err = mips_receive_trailer (trlr, &garbage, &ch, timeout);
939 mips_error ("Timed out waiting for packet");
945 /* Don't use _filtered; we can't deal with a QUIT out of
946 target_wait, and I think this might be called from there. */
947 if (remote_debug > 0)
948 printf_unfiltered ("Got SYN when wanted trailer\n");
952 /* If this is the wrong sequence number, ignore it. */
953 if (HDR_GET_SEQ (hdr) != mips_receive_seq)
955 /* Don't use _filtered; we can't deal with a QUIT out of
956 target_wait, and I think this might be called from there. */
957 if (remote_debug > 0)
958 printf_unfiltered ("Ignoring sequence number %d (want %d)\n",
959 HDR_GET_SEQ (hdr), mips_receive_seq);
963 if (mips_cksum (hdr, buff, len) == TRLR_GET_CKSUM (trlr))
966 if (remote_debug > 0)
967 /* Don't use _filtered; we can't deal with a QUIT out of
968 target_wait, and I think this might be called from there. */
969 printf_unfiltered ("Bad checksum; data %d, trailer %d\n",
970 mips_cksum (hdr, buff, len),
971 TRLR_GET_CKSUM (trlr));
973 /* The checksum failed. Send an acknowledgement for the
974 previous packet to tell the remote to resend the packet. */
975 ack[HDR_INDX_SYN] = HDR_SET_SYN (0, 0, mips_receive_seq);
976 ack[HDR_INDX_TYPE_LEN] = HDR_SET_TYPE_LEN (0, 0, mips_receive_seq);
977 ack[HDR_INDX_LEN1] = HDR_SET_LEN1 (0, 0, mips_receive_seq);
978 ack[HDR_INDX_SEQ] = HDR_SET_SEQ (0, 0, mips_receive_seq);
980 cksum = mips_cksum (ack, (unsigned char *) NULL, 0);
982 ack[HDR_LENGTH + TRLR_INDX_CSUM1] = TRLR_SET_CSUM1 (cksum);
983 ack[HDR_LENGTH + TRLR_INDX_CSUM2] = TRLR_SET_CSUM2 (cksum);
984 ack[HDR_LENGTH + TRLR_INDX_CSUM3] = TRLR_SET_CSUM3 (cksum);
986 if (remote_debug > 0)
988 ack[HDR_LENGTH + TRLR_LENGTH] = '\0';
989 /* Don't use _filtered; we can't deal with a QUIT out of
990 target_wait, and I think this might be called from there. */
991 printf_unfiltered ("Writing ack %d \"%s\"\n", mips_receive_seq,
995 if (SERIAL_WRITE (mips_desc, ack, HDR_LENGTH + TRLR_LENGTH) != 0)
998 mips_error ("write to target failed: %s", safe_strerror (errno));
1004 if (remote_debug > 0)
1007 /* Don't use _filtered; we can't deal with a QUIT out of
1008 target_wait, and I think this might be called from there. */
1009 printf_unfiltered ("Got packet \"%s\"\n", buff);
1012 /* We got the packet. Send an acknowledgement. */
1013 mips_receive_seq = (mips_receive_seq + 1) % SEQ_MODULOS;
1015 ack[HDR_INDX_SYN] = HDR_SET_SYN (0, 0, mips_receive_seq);
1016 ack[HDR_INDX_TYPE_LEN] = HDR_SET_TYPE_LEN (0, 0, mips_receive_seq);
1017 ack[HDR_INDX_LEN1] = HDR_SET_LEN1 (0, 0, mips_receive_seq);
1018 ack[HDR_INDX_SEQ] = HDR_SET_SEQ (0, 0, mips_receive_seq);
1020 cksum = mips_cksum (ack, (unsigned char *) NULL, 0);
1022 ack[HDR_LENGTH + TRLR_INDX_CSUM1] = TRLR_SET_CSUM1 (cksum);
1023 ack[HDR_LENGTH + TRLR_INDX_CSUM2] = TRLR_SET_CSUM2 (cksum);
1024 ack[HDR_LENGTH + TRLR_INDX_CSUM3] = TRLR_SET_CSUM3 (cksum);
1026 if (remote_debug > 0)
1028 ack[HDR_LENGTH + TRLR_LENGTH] = '\0';
1029 /* Don't use _filtered; we can't deal with a QUIT out of
1030 target_wait, and I think this might be called from there. */
1031 printf_unfiltered ("Writing ack %d \"%s\"\n", mips_receive_seq,
1035 if (SERIAL_WRITE (mips_desc, ack, HDR_LENGTH + TRLR_LENGTH) != 0)
1038 mips_error ("write to target failed: %s", safe_strerror (errno));
1046 /* Optionally send a request to the remote system and optionally wait
1047 for the reply. This implements the remote debugging protocol,
1048 which is built on top of the packet protocol defined above. Each
1049 request has an ADDR argument and a DATA argument. The following
1050 requests are defined:
1052 \0 don't send a request; just wait for a reply
1053 i read word from instruction space at ADDR
1054 d read word from data space at ADDR
1055 I write DATA to instruction space at ADDR
1056 D write DATA to data space at ADDR
1057 r read register number ADDR
1058 R set register number ADDR to value DATA
1059 c continue execution (if ADDR != 1, set pc to ADDR)
1060 s single step (if ADDR != 1, set pc to ADDR)
1062 The read requests return the value requested. The write requests
1063 return the previous value in the changed location. The execution
1064 requests return a UNIX wait value (the approximate signal which
1065 caused execution to stop is in the upper eight bits).
1067 If PERR is not NULL, this function waits for a reply. If an error
1068 occurs, it sets *PERR to 1 and sets errno according to what the
1069 target board reports. */
1072 mips_request (cmd, addr, data, perr, timeout, buff)
1080 char myBuff[DATA_MAXLEN + 1];
1087 if (buff == (char *) NULL)
1092 if (mips_need_reply)
1093 fatal ("mips_request: Trying to send command before reply");
1094 sprintf (buff, "0x0 %c 0x%x 0x%x", cmd, addr, data);
1095 mips_send_packet (buff, 1);
1096 mips_need_reply = 1;
1099 if (perr == (int *) NULL)
1102 if (! mips_need_reply)
1103 fatal ("mips_request: Trying to get reply before command");
1105 mips_need_reply = 0;
1107 len = mips_receive_packet (buff, 1, timeout);
1110 if (sscanf (buff, "0x%x %c 0x%x 0x%x",
1111 &rpid, &rcmd, &rerrflg, &rresponse) != 4
1112 || (cmd != '\0' && rcmd != cmd))
1113 mips_error ("Bad response from remote board");
1119 /* FIXME: This will returns MIPS errno numbers, which may or may
1120 not be the same as errno values used on other systems. If
1121 they stick to common errno values, they will be the same, but
1122 if they don't, they must be translated. */
1133 mips_initialize_cleanups (arg)
1136 mips_initializing = 0;
1140 mips_send_command (cmd, prompt)
1144 SERIAL_WRITE (mips_desc, cmd, strlen(cmd));
1146 mips_expect ("\012");
1148 mips_expect (mips_monitor_prompt);
1151 /* Enter remote (dbx) debug mode: */
1155 /* Reset the sequence numbers, ready for the new debug sequence: */
1157 mips_receive_seq = 0;
1159 if (mips_monitor == MON_PMON)
1160 mips_send_command ("debug\015", 0);
1161 else /* assume IDT monitor by default */
1162 mips_send_command ("db tty0\015", 0);
1164 SERIAL_WRITE (mips_desc, "\015", sizeof "\015" - 1);
1166 /* We don't need to absorb any spurious characters here, since the
1167 mips_receive_header will eat up a reasonable number of characters
1168 whilst looking for the SYN, however this avoids the "garbage"
1169 being displayed to the user. */
1170 if (mips_monitor == MON_PMON)
1171 mips_expect ("\015");
1174 char buff[DATA_MAXLEN + 1];
1175 if (mips_receive_packet (buff, 1, 3) < 0)
1176 mips_error ("Failed to initialize (didn't receive packet).");
1180 /* Exit remote (dbx) debug mode, returning to the monitor prompt: */
1186 mips_request ('x', (unsigned int) 0, (unsigned int) 0, &err,
1187 mips_receive_wait, NULL);
1189 if (mips_monitor == MON_PMON && !mips_expect ("Exiting remote debug mode"))
1192 if (!mips_expect ("\015\012"))
1195 if (!mips_expect (mips_monitor_prompt))
1201 /* Initialize a new connection to the MIPS board, and make sure we are
1202 really connected. */
1208 struct cleanup *old_cleanups = make_cleanup (mips_initialize_cleanups, NULL);
1211 /* What is this code doing here? I don't see any way it can happen, and
1212 it might mean mips_initializing didn't get cleared properly.
1213 So I'll make it a warning. */
1215 if (mips_initializing)
1217 warning ("internal error: mips_initialize called twice");
1222 mips_initializing = 1;
1224 /* At this point, the packit protocol isn't responding. We'll try getting
1225 into the monitor, and restarting the protocol. */
1227 /* Force the system into the monitor. After this we *should* be at
1228 the mips_monitor_prompt. */
1229 if (mips_monitor == MON_PMON)
1230 j = 0; /* start by checking if we are already at the prompt */
1232 j = 1; /* start by sending a break */
1237 case 0: /* First, try sending a CR */
1238 SERIAL_FLUSH_INPUT (mips_desc);
1239 SERIAL_WRITE (mips_desc, "\015", 1);
1241 case 1: /* First, try sending a break */
1242 SERIAL_SEND_BREAK (mips_desc);
1244 case 2: /* Then, try a ^C */
1245 SERIAL_WRITE (mips_desc, "\003", 1);
1247 case 3: /* Then, try escaping from download */
1249 if (mips_monitor == MON_PMON)
1253 /* We shouldn't need to send multiple termination
1254 sequences, since the target performs line (or
1255 block) reads, and then processes those
1256 packets. In-case we were downloading a large packet
1257 we flush the output buffer before inserting a
1258 termination sequence. */
1259 SERIAL_FLUSH_OUTPUT (mips_desc);
1260 sprintf (tbuff, "\015/E/E\015");
1261 SERIAL_WRITE (mips_desc, tbuff, 6);
1268 /* We are possibly in binary download mode, having
1269 aborted in the middle of an S-record. ^C won't
1270 work because of binary mode. The only reliable way
1271 out is to send enough termination packets (8 bytes)
1272 to fill up and then overflow the largest size
1273 S-record (255 bytes in this case). This amounts to
1277 mips_make_srec (srec, '7', 0, NULL, 0);
1279 for (i = 1; i <= 33; i++)
1281 SERIAL_WRITE (mips_desc, srec, 8);
1283 if (SERIAL_READCHAR (mips_desc, 0) >= 0)
1284 break; /* Break immediatly if we get something from
1291 mips_error ("Failed to initialize.");
1294 if (mips_expect (mips_monitor_prompt))
1298 if (mips_monitor == MON_PMON)
1300 /* Ensure the correct target state: */
1301 mips_send_command ("set regsize 64\015", -1);
1302 mips_send_command ("set hostport tty0\015", -1);
1303 mips_send_command ("set brkcmd \"\"\015", -1);
1304 /* Delete all the current breakpoints: */
1305 mips_send_command ("db *\015", -1);
1306 /* NOTE: PMON does not have breakpoint support through the
1307 "debug" mode, only at the monitor command-line. */
1310 mips_enter_debug ();
1312 /* Clear all breakpoints: */
1313 if (common_breakpoint ('b', -1, 0, NULL))
1314 monitor_supports_breakpoints = 0;
1316 monitor_supports_breakpoints = 1;
1318 do_cleanups (old_cleanups);
1320 /* If this doesn't call error, we have connected; we don't care if
1321 the request itself succeeds or fails. */
1323 mips_request ('r', (unsigned int) 0, (unsigned int) 0, &err,
1324 mips_receive_wait, NULL);
1325 set_current_frame (create_new_frame (read_fp (), read_pc ()));
1326 select_frame (get_current_frame (), 0);
1329 /* Open a connection to the remote board. */
1331 common_open (ops, name, from_tty)
1332 struct target_ops *ops;
1340 "To open a MIPS remote debugging connection, you need to specify what serial\n\
1341 device is attached to the target board (e.g., /dev/ttya).");
1343 target_preopen (from_tty);
1346 unpush_target (current_ops);
1348 mips_desc = SERIAL_OPEN (name);
1349 if (mips_desc == (serial_t) NULL)
1350 perror_with_name (name);
1352 if (baud_rate != -1)
1354 if (SERIAL_SETBAUDRATE (mips_desc, baud_rate))
1356 SERIAL_CLOSE (mips_desc);
1357 perror_with_name (name);
1361 SERIAL_RAW (mips_desc);
1369 printf_unfiltered ("Remote MIPS debugging using %s\n", name);
1371 /* Switch to using remote target now. */
1374 /* FIXME: Should we call start_remote here? */
1376 /* Try to figure out the processor model if possible. */
1377 ptype = mips_read_processor_type ();
1379 mips_set_processor_type_command (strsave (ptype), 0);
1381 /* This is really the job of start_remote however, that makes an assumption
1382 that the target is about to print out a status message of some sort. That
1383 doesn't happen here (in fact, it may not be possible to get the monitor to
1384 send the appropriate packet). */
1386 flush_cached_frames ();
1387 registers_changed ();
1388 stop_pc = read_pc ();
1389 set_current_frame (create_new_frame (read_fp (), stop_pc));
1390 select_frame (get_current_frame (), 0);
1391 print_stack_frame (selected_frame, -1, 1);
1395 mips_open (name, from_tty)
1399 mips_monitor = MON_IDT;
1400 common_open (&mips_ops, name, from_tty);
1404 pmon_open (name, from_tty)
1408 /* The PMON monitor has a prompt different from the default
1409 "TARGET_MONITOR_PROMPT": */
1410 mips_monitor_prompt = "PMON> ";
1411 mips_monitor = MON_PMON;
1412 common_open (&pmon_ops, name, from_tty);
1416 /* Close a connection to the remote board. */
1419 mips_close (quitting)
1428 /* Get the board out of remote debugging mode. */
1429 (void) mips_exit_debug ();
1431 SERIAL_CLOSE (mips_desc);
1435 /* Detach from the remote board. */
1438 mips_detach (args, from_tty)
1443 error ("Argument given to \"detach\" when remotely debugging.");
1450 printf_unfiltered ("Ending remote MIPS debugging.\n");
1453 /* Tell the target board to resume. This does not wait for a reply
1457 mips_resume (pid, step, siggnal)
1459 enum target_signal siggnal;
1462 /* start-sanitize-gm */
1463 #ifndef GENERAL_MAGIC
1464 if (siggnal != TARGET_SIGNAL_0)
1466 ("Can't send signals to a remote system. Try `handle %s ignore'.",
1467 target_signal_to_name (siggnal));
1468 #endif /* GENERAL_MAGIC */
1469 /* end-sanitize-gm */
1471 mips_request (step ? 's' : 'c',
1473 (unsigned int) siggnal,
1475 mips_receive_wait, NULL);
1478 /* Return the signal corresponding to SIG, where SIG is the number which
1479 the MIPS protocol uses for the signal. */
1481 mips_signal_from_protocol (sig)
1484 /* We allow a few more signals than the IDT board actually returns, on
1485 the theory that there is at least *some* hope that perhaps the numbering
1486 for these signals is widely agreed upon. */
1489 return TARGET_SIGNAL_UNKNOWN;
1491 /* Don't want to use target_signal_from_host because we are converting
1492 from MIPS signal numbers, not host ones. Our internal numbers
1493 match the MIPS numbers for the signals the board can return, which
1494 are: SIGINT, SIGSEGV, SIGBUS, SIGILL, SIGFPE, SIGTRAP. */
1495 return (enum target_signal) sig;
1498 /* Wait until the remote stops, and return a wait status. */
1501 mips_wait (pid, status)
1503 struct target_waitstatus *status;
1507 char buff[DATA_MAXLEN];
1512 interrupt_count = 0;
1515 /* If we have not sent a single step or continue command, then the
1516 board is waiting for us to do something. Return a status
1517 indicating that it is stopped. */
1518 if (! mips_need_reply)
1520 status->kind = TARGET_WAITKIND_STOPPED;
1521 status->value.sig = TARGET_SIGNAL_TRAP;
1525 /* No timeout; we sit here as long as the program continues to execute. */
1527 rstatus = mips_request ('\000', (unsigned int) 0, (unsigned int) 0, &err, -1,
1531 mips_error ("Remote failure: %s", safe_strerror (errno));
1533 nfields = sscanf (buff, "0x%*x %*c 0x%*x 0x%*x 0x%x 0x%x 0x%x 0x%*x %s",
1534 &rpc, &rfp, &rsp, flags);
1536 /* See if we got back extended status. If so, pick out the pc, fp, sp, etc... */
1538 if (nfields == 7 || nfields == 9)
1540 char buf[MAX_REGISTER_RAW_SIZE];
1542 store_unsigned_integer (buf, REGISTER_RAW_SIZE (PC_REGNUM), rpc);
1543 supply_register (PC_REGNUM, buf);
1545 store_unsigned_integer (buf, REGISTER_RAW_SIZE (PC_REGNUM), rfp);
1546 supply_register (30, buf); /* This register they are avoiding and so it is unnamed */
1548 store_unsigned_integer (buf, REGISTER_RAW_SIZE (SP_REGNUM), rsp);
1549 supply_register (SP_REGNUM, buf);
1551 store_unsigned_integer (buf, REGISTER_RAW_SIZE (FP_REGNUM), 0);
1552 supply_register (FP_REGNUM, buf);
1558 for (i = 0; i <= 2; i++)
1559 if (flags[i] == 'r' || flags[i] == 'w')
1561 else if (flags[i] == '\000')
1566 /* Translate a MIPS waitstatus. We use constants here rather than WTERMSIG
1567 and so on, because the constants we want here are determined by the
1568 MIPS protocol and have nothing to do with what host we are running on. */
1569 if ((rstatus & 0377) == 0)
1571 status->kind = TARGET_WAITKIND_EXITED;
1572 status->value.integer = (((rstatus) >> 8) & 0377);
1574 else if ((rstatus & 0377) == 0177)
1576 status->kind = TARGET_WAITKIND_STOPPED;
1577 status->value.sig = mips_signal_from_protocol (((rstatus) >> 8) & 0377);
1581 status->kind = TARGET_WAITKIND_SIGNALLED;
1582 status->value.sig = mips_signal_from_protocol (rstatus & 0177);
1589 pmon_wait (pid, status)
1591 struct target_waitstatus *status;
1595 char buff[DATA_MAXLEN];
1597 interrupt_count = 0;
1600 /* If we have not sent a single step or continue command, then the
1601 board is waiting for us to do something. Return a status
1602 indicating that it is stopped. */
1603 if (! mips_need_reply)
1605 status->kind = TARGET_WAITKIND_STOPPED;
1606 status->value.sig = TARGET_SIGNAL_TRAP;
1610 /* Sit, polling the serial until the target decides to talk to
1611 us. NOTE: the timeout value we use is used not just for the
1612 first character, but for all the characters. */
1614 rstatus = mips_request ('\000', (unsigned int) 0, (unsigned int) 0, &err, -1,
1618 mips_error ("Remote failure: %s", safe_strerror (errno));
1620 /* NOTE: The following (sig) numbers are defined by PMON:
1621 SPP_SIGTRAP 5 breakpoint
1629 /* On returning from a continue, the PMON monitor seems to start
1630 echoing back the messages we send prior to sending back the
1631 ACK. The code can cope with this, but to try and avoid the
1632 unnecessary serial traffic, and "spurious" characters displayed
1633 to the user, we cheat and reset the debug protocol. The problems
1634 seems to be caused by a check on the number of arguments, and the
1635 command length, within the monitor causing it to echo the command
1638 mips_enter_debug ();
1640 /* Translate a MIPS waitstatus. We use constants here rather than WTERMSIG
1641 and so on, because the constants we want here are determined by the
1642 MIPS protocol and have nothing to do with what host we are running on. */
1643 if ((rstatus & 0377) == 0)
1645 status->kind = TARGET_WAITKIND_EXITED;
1646 status->value.integer = (((rstatus) >> 8) & 0377);
1648 else if ((rstatus & 0377) == 0177)
1650 status->kind = TARGET_WAITKIND_STOPPED;
1651 status->value.sig = mips_signal_from_protocol (((rstatus) >> 8) & 0377);
1655 status->kind = TARGET_WAITKIND_SIGNALLED;
1656 status->value.sig = mips_signal_from_protocol (rstatus & 0177);
1662 /* We have to map between the register numbers used by gdb and the
1663 register numbers used by the debugging protocol. This function
1664 assumes that we are using tm-mips.h. */
1666 #define REGNO_OFFSET 96
1669 mips_map_regno (regno)
1674 if (regno >= FP0_REGNUM && regno < FP0_REGNUM + 32)
1675 return regno - FP0_REGNUM + 32;
1679 return REGNO_OFFSET + 0;
1681 return REGNO_OFFSET + 1;
1683 return REGNO_OFFSET + 2;
1685 return REGNO_OFFSET + 3;
1687 return REGNO_OFFSET + 4;
1689 return REGNO_OFFSET + 5;
1691 /* FIXME: Is there a way to get the status register? */
1696 /* Fetch the remote registers. */
1699 mips_fetch_registers (regno)
1702 unsigned LONGEST val;
1707 for (regno = 0; regno < NUM_REGS; regno++)
1708 mips_fetch_registers (regno);
1712 if (regno == FP_REGNUM || regno == ZERO_REGNUM)
1713 /* FP_REGNUM on the mips is a hack which is just supposed to read
1714 zero (see also mips-nat.c). */
1718 #if 0 /* Unfortunately the PMON version in the Vr4300 board has been
1719 compiled without the 64bit register access commands. This
1720 means we cannot get hold of the full register width. */
1721 if (mips_monitor == MON_PMON)
1722 val = mips_request ('t', (unsigned int) mips_map_regno (regno),
1723 (unsigned int) 0, &err, mips_receive_wait, NULL);
1726 val = mips_request ('r', (unsigned int) mips_map_regno (regno),
1727 (unsigned int) 0, &err, mips_receive_wait, NULL);
1729 mips_error ("Can't read register %d: %s", regno,
1730 safe_strerror (errno));
1734 char buf[MAX_REGISTER_RAW_SIZE];
1736 /* We got the number the register holds, but gdb expects to see a
1737 value in the target byte ordering. */
1738 store_unsigned_integer (buf, REGISTER_RAW_SIZE (regno), val);
1739 supply_register (regno, buf);
1743 /* Prepare to store registers. The MIPS protocol can store individual
1744 registers, so this function doesn't have to do anything. */
1747 mips_prepare_to_store ()
1751 /* Store remote register(s). */
1754 mips_store_registers (regno)
1761 for (regno = 0; regno < NUM_REGS; regno++)
1762 mips_store_registers (regno);
1766 mips_request ('R', (unsigned int) mips_map_regno (regno),
1767 (unsigned int) read_register (regno),
1768 &err, mips_receive_wait, NULL);
1770 mips_error ("Can't write register %d: %s", regno, safe_strerror (errno));
1773 /* Fetch a word from the target board. */
1776 mips_fetch_word (addr)
1782 val = mips_request ('d', (unsigned int) addr, (unsigned int) 0, &err,
1783 mips_receive_wait, NULL);
1786 /* Data space failed; try instruction space. */
1787 val = mips_request ('i', (unsigned int) addr, (unsigned int) 0, &err,
1788 mips_receive_wait, NULL);
1790 mips_error ("Can't read address 0x%x: %s", addr, safe_strerror (errno));
1795 /* Store a word to the target board. Returns errno code or zero for
1796 success. If OLD_CONTENTS is non-NULL, put the old contents of that
1797 memory location there. */
1800 mips_store_word (addr, val, old_contents)
1806 unsigned int oldcontents;
1808 oldcontents = mips_request ('D', (unsigned int) addr, (unsigned int) val,
1810 mips_receive_wait, NULL);
1813 /* Data space failed; try instruction space. */
1814 oldcontents = mips_request ('I', (unsigned int) addr,
1815 (unsigned int) val, &err,
1816 mips_receive_wait, NULL);
1820 if (old_contents != NULL)
1821 store_unsigned_integer (old_contents, 4, oldcontents);
1825 /* Read or write LEN bytes from inferior memory at MEMADDR,
1826 transferring to or from debugger address MYADDR. Write to inferior
1827 if SHOULD_WRITE is nonzero. Returns length of data written or
1828 read; 0 for error. Note that protocol gives us the correct value
1829 for a longword, since it transfers values in ASCII. We want the
1830 byte values, so we have to swap the longword values. */
1833 mips_xfer_memory (memaddr, myaddr, len, write, ignore)
1838 struct target_ops *ignore;
1841 /* Round starting address down to longword boundary. */
1842 register CORE_ADDR addr = memaddr &~ 3;
1843 /* Round ending address up; get number of longwords that makes. */
1844 register int count = (((memaddr + len) - addr) + 3) / 4;
1845 /* Allocate buffer of that many longwords. */
1846 register char *buffer = alloca (count * 4);
1852 /* Fill start and end extra bytes of buffer with existing data. */
1853 if (addr != memaddr || len < 4)
1855 /* Need part of initial word -- fetch it. */
1856 store_unsigned_integer (&buffer[0], 4, mips_fetch_word (addr));
1861 /* Need part of last word -- fetch it. FIXME: we do this even
1862 if we don't need it. */
1863 store_unsigned_integer (&buffer[(count - 1) * 4], 4,
1864 mips_fetch_word (addr + (count - 1) * 4));
1867 /* Copy data to be written over corresponding part of buffer */
1869 memcpy ((char *) buffer + (memaddr & 3), myaddr, len);
1871 /* Write the entire buffer. */
1873 for (i = 0; i < count; i++, addr += 4)
1875 status = mips_store_word (addr,
1876 extract_unsigned_integer (&buffer[i*4], 4),
1878 /* Report each kilobyte (we download 32-bit words at a time) */
1881 printf_unfiltered ("*");
1889 /* FIXME: Do we want a QUIT here? */
1892 printf_unfiltered ("\n");
1896 /* Read all the longwords */
1897 for (i = 0; i < count; i++, addr += 4)
1899 store_unsigned_integer (&buffer[i*4], 4, mips_fetch_word (addr));
1903 /* Copy appropriate bytes out of the buffer. */
1904 memcpy (myaddr, buffer + (memaddr & 3), len);
1909 /* Print info on this target. */
1912 mips_files_info (ignore)
1913 struct target_ops *ignore;
1915 printf_unfiltered ("Debugging a MIPS board over a serial line.\n");
1918 /* Kill the process running on the board. This will actually only
1919 work if we are doing remote debugging over the console input. I
1920 think that if IDT/sim had the remote debug interrupt enabled on the
1921 right port, we could interrupt the process with a break signal. */
1926 if (!mips_wait_flag)
1931 if (interrupt_count >= 2)
1933 interrupt_count = 0;
1935 target_terminal_ours ();
1937 if (query ("Interrupted while waiting for the program.\n\
1938 Give up (and stop debugging it)? "))
1940 /* Clean up in such a way that mips_close won't try to talk to the
1941 board (it almost surely won't work since we weren't able to talk to
1945 SERIAL_CLOSE (mips_desc);
1947 printf_unfiltered ("Ending remote MIPS debugging.\n");
1948 target_mourn_inferior ();
1950 return_to_top_level (RETURN_QUIT);
1953 target_terminal_inferior ();
1956 if (remote_debug > 0)
1957 printf_unfiltered ("Sending break\n");
1959 SERIAL_SEND_BREAK (mips_desc);
1968 SERIAL_WRITE (mips_desc, &cc, 1);
1970 target_mourn_inferior ();
1975 /* Start running on the target board. */
1978 mips_create_inferior (execfile, args, env)
1988 Can't pass arguments to remote MIPS board; arguments ignored.");
1989 /* And don't try to use them on the next "run" command. */
1990 execute_command ("set args", 0);
1993 if (execfile == 0 || exec_bfd == 0)
1994 error ("No executable file specified");
1996 entry_pt = (CORE_ADDR) bfd_get_start_address (exec_bfd);
1998 init_wait_for_inferior ();
2000 /* FIXME: Should we set inferior_pid here? */
2002 /* start-sanitize-gm */
2003 #ifdef GENERAL_MAGIC
2004 magic_create_inferior_hook ();
2005 proceed (entry_pt, TARGET_SIGNAL_PWR, 0);
2007 /* end-sanitize-gm */
2008 proceed (entry_pt, TARGET_SIGNAL_DEFAULT, 0);
2009 /* start-sanitize-gm */
2010 #endif /* GENERAL_MAGIC */
2011 /* end-sanitize-gm */
2014 /* Clean up after a process. Actually nothing to do. */
2017 mips_mourn_inferior ()
2019 if (current_ops != NULL)
2020 unpush_target (current_ops);
2021 generic_mourn_inferior ();
2024 /* We can write a breakpoint and read the shadow contents in one
2027 /* The IDT board uses an unusual breakpoint value, and sometimes gets
2028 confused when it sees the usual MIPS breakpoint instruction. */
2030 #define BREAK_INSN (0x00000a0d)
2031 #define BREAK_INSN_SIZE (4)
2033 /* Insert a breakpoint on targets that don't have any better breakpoint
2034 support. We read the contents of the target location and stash it,
2035 then overwrite it with a breakpoint instruction. ADDR is the target
2036 location in the target machine. CONTENTS_CACHE is a pointer to
2037 memory allocated for saving the target contents. It is guaranteed
2038 by the caller to be long enough to save sizeof BREAKPOINT bytes (this
2039 is accomplished via BREAKPOINT_MAX). */
2042 mips_insert_breakpoint (addr, contents_cache)
2044 char *contents_cache;
2048 if (monitor_supports_breakpoints)
2049 return common_breakpoint ('B', addr, 0x3, "f");
2051 return mips_store_word (addr, BREAK_INSN, contents_cache);
2055 mips_remove_breakpoint (addr, contents_cache)
2057 char *contents_cache;
2059 if (monitor_supports_breakpoints)
2060 return common_breakpoint ('b', addr, 0, NULL);
2062 return target_write_memory (addr, contents_cache, BREAK_INSN_SIZE);
2065 #if 0 /* currently not used */
2066 /* PMON does not currently provide support for the debug mode 'b'
2067 commands to manipulate breakpoints. However, if we wanted to use
2068 the monitor breakpoints (rather than the GDB BREAK_INSN version)
2069 then this code performs the work needed to leave debug mode,
2070 set/clear the breakpoint, and then return to debug mode. */
2072 #define PMON_MAX_BP (33) /* 32 SW, 1 HW */
2073 static CORE_ADDR mips_pmon_bp_info[PMON_MAX_BP];
2074 /* NOTE: The code relies on this vector being zero-initialised by the system */
2077 pmon_insert_breakpoint (addr, contents_cache)
2079 char *contents_cache;
2083 if (monitor_supports_breakpoints)
2085 char tbuff[12]; /* space for breakpoint command */
2089 /* PMON does not support debug level breakpoint set/remove: */
2090 if (mips_exit_debug ())
2091 mips_error ("Failed to exit debug mode");
2093 sprintf (tbuff, "b %08x\015", addr);
2094 mips_send_command (tbuff, 0);
2096 mips_expect ("Bpt ");
2098 if (!mips_getstring (tbuff, 2))
2100 tbuff[2] = '\0'; /* terminate the string */
2101 if (sscanf (tbuff, "%d", &bpnum) != 1)
2103 fprintf_unfiltered (stderr, "Invalid decimal breakpoint number from target: %s\n", tbuff);
2107 mips_expect (" = ");
2109 /* Lead in the hex number we are expecting: */
2113 if (!mips_getstring (&tbuff[2], 8))
2115 tbuff[10] = '\0'; /* terminate the string */
2117 if (sscanf (tbuff, "0x%08x", &bpaddr) != 1)
2119 fprintf_unfiltered (stderr, "Invalid hex address from target: %s\n", tbuff);
2123 if (bpnum >= PMON_MAX_BP)
2125 fprintf_unfiltered (stderr, "Error: Returned breakpoint number %d outside acceptable range (0..%d)\n",
2126 bpnum, PMON_MAX_BP - 1);
2131 fprintf_unfiltered (stderr, "Warning: Breakpoint addresses do not match: 0x%x != 0x%x\n", addr, bpaddr);
2133 mips_pmon_bp_info[bpnum] = bpaddr;
2135 mips_expect ("\015\012");
2136 mips_expect (mips_monitor_prompt);
2138 mips_enter_debug ();
2143 return mips_store_word (addr, BREAK_INSN, contents_cache);
2147 pmon_remove_breakpoint (addr, contents_cache)
2149 char *contents_cache;
2151 if (monitor_supports_breakpoints)
2154 char tbuff[7]; /* enough for delete breakpoint command */
2156 for (bpnum = 0; bpnum < PMON_MAX_BP; bpnum++)
2157 if (mips_pmon_bp_info[bpnum] == addr)
2160 if (bpnum >= PMON_MAX_BP)
2162 fprintf_unfiltered (stderr, "pmon_remove_breakpoint: Failed to find breakpoint at address 0x%x\n", addr);
2166 if (mips_exit_debug ())
2167 mips_error ("Failed to exit debug mode");
2169 sprintf (tbuff, "db %02d\015", bpnum);
2171 mips_send_command (tbuff, -1);
2172 /* NOTE: If the breakpoint does not exist then a "Bpt <dd> not
2173 set" message will be returned. */
2175 mips_enter_debug ();
2180 return target_write_memory (addr, contents_cache, BREAK_INSN_SIZE);
2184 /* Compute a don't care mask for the region bounding ADDR and ADDR + LEN - 1.
2185 This is used for memory ref breakpoints. */
2187 static unsigned long
2188 calculate_mask (addr, len)
2195 mask = addr ^ (addr + len - 1);
2197 for (i = 32; i >= 0; i--)
2203 mask = (unsigned long) 0xffffffff >> i;
2208 /* Set a data watchpoint. ADDR and LEN should be obvious. TYPE is either 1
2209 for a read watchpoint, or 2 for a read/write watchpoint. */
2212 remote_mips_set_watchpoint (addr, len, type)
2217 CORE_ADDR first_addr;
2221 mask = calculate_mask (addr, len);
2223 first_addr = addr & ~mask;
2233 case 2: /* read/write */
2240 if (common_breakpoint ('B', first_addr, mask, flags))
2247 remote_mips_remove_watchpoint (addr, len, type)
2252 CORE_ADDR first_addr;
2255 mask = calculate_mask (addr, len);
2257 first_addr = addr & ~mask;
2259 if (common_breakpoint ('b', first_addr, 0, NULL))
2266 remote_mips_stopped_by_watchpoint ()
2268 return hit_watchpoint;
2271 /* This routine generates the a breakpoint command of the form:
2273 0x0 <CMD> <ADDR> <MASK> <FLAGS>
2275 Where <CMD> is one of: `B' to set, or `b' to clear a breakpoint. <ADDR> is
2276 the address of the breakpoint. <MASK> is a don't care mask for addresses.
2277 <FLAGS> is any combination of `r', `w', or `f' for read/write/or fetch. */
2280 common_breakpoint (cmd, addr, mask, flags)
2287 char buf[DATA_MAXLEN + 1];
2289 int rpid, rerrflg, rresponse;
2293 sprintf (buf, "0x0 %c 0x%x 0x%x %s", cmd, addr, mask, flags);
2295 sprintf (buf, "0x0 %c 0x%x", cmd, addr);
2297 mips_send_packet (buf, 1);
2299 len = mips_receive_packet (buf, 1, mips_receive_wait);
2301 nfields = sscanf (buf, "0x%x %c 0x%x 0x%x", &rpid, &rcmd, &rerrflg, &rresponse);
2305 mips_error ("common_breakpoint: Bad response from remote board: %s", buf);
2309 if (rresponse != EINVAL)
2310 fprintf_unfiltered (stderr, "common_breakpoint (0x%x): Got error: 0x%x\n",
2319 send_srec (srec, len, addr)
2328 SERIAL_WRITE (mips_desc, srec, len);
2330 ch = mips_readchar (2);
2334 case SERIAL_TIMEOUT:
2335 error ("Timeout during download.");
2339 case 0x15: /* NACK */
2340 fprintf_unfiltered (gdb_stderr, "Download got a NACK at byte %d! Retrying.\n", addr);
2343 error ("Download got unexpected ack char: 0x%x, retrying.\n", ch);
2348 /* Download a binary file by converting it to S records. */
2351 mips_load_srec (args)
2356 char *buffer, srec[1024];
2358 int srec_frame = 200;
2360 static int hashmark = 1;
2362 buffer = alloca (srec_frame * 2 + 256);
2364 abfd = bfd_openr (args, 0);
2367 printf_filtered ("Unable to open file %s\n", args);
2371 if (bfd_check_format (abfd, bfd_object) == 0)
2373 printf_filtered ("File is not an object file\n");
2377 /* This actually causes a download in the IDT binary format: */
2378 #define LOAD_CMD "load -b -s tty0\015"
2379 mips_send_command (LOAD_CMD, 0);
2381 for (s = abfd->sections; s; s = s->next)
2383 if (s->flags & SEC_LOAD)
2387 printf_filtered ("%s\t: 0x%4x .. 0x%4x ", s->name, s->vma,
2388 s->vma + s->_raw_size);
2389 gdb_flush (gdb_stdout);
2391 for (i = 0; i < s->_raw_size; i += numbytes)
2393 numbytes = min (srec_frame, s->_raw_size - i);
2395 bfd_get_section_contents (abfd, s, buffer, i, numbytes);
2397 reclen = mips_make_srec (srec, '3', s->vma + i, buffer, numbytes);
2398 send_srec (srec, reclen, s->vma + i);
2402 putchar_unfiltered ('#');
2403 gdb_flush (gdb_stdout);
2406 } /* Per-packet (or S-record) loop */
2408 putchar_unfiltered ('\n');
2409 } /* Loadable sections */
2412 putchar_unfiltered ('\n');
2414 /* Write a type 7 terminator record. no data for a type 7, and there
2415 is no data, so len is 0. */
2417 reclen = mips_make_srec (srec, '7', abfd->start_address, NULL, 0);
2419 send_srec (srec, reclen, abfd->start_address);
2421 SERIAL_FLUSH_INPUT (mips_desc);
2425 * mips_make_srec -- make an srecord. This writes each line, one at a
2426 * time, each with it's own header and trailer line.
2427 * An srecord looks like this:
2429 * byte count-+ address
2430 * start ---+ | | data +- checksum
2432 * S01000006F6B692D746573742E73726563E4
2433 * S315000448600000000000000000FC00005900000000E9
2434 * S31A0004000023C1400037DE00F023604000377B009020825000348D
2435 * S30B0004485A0000000000004E
2438 * S<type><length><address><data><checksum>
2442 * is the number of bytes following upto the checksum. Note that
2443 * this is not the number of chars following, since it takes two
2444 * chars to represent a byte.
2448 * 1) two byte address data record
2449 * 2) three byte address data record
2450 * 3) four byte address data record
2451 * 7) four byte address termination record
2452 * 8) three byte address termination record
2453 * 9) two byte address termination record
2456 * is the start address of the data following, or in the case of
2457 * a termination record, the start address of the image
2461 * is the sum of all the raw byte data in the record, from the length
2462 * upwards, modulo 256 and subtracted from 255.
2464 * This routine returns the length of the S-record.
2469 mips_make_srec (buf, type, memaddr, myaddr, len)
2473 unsigned char *myaddr;
2476 unsigned char checksum;
2479 /* Create the header for the srec. addr_size is the number of bytes in the address,
2480 and 1 is the number of bytes in the count. */
2484 buf[2] = len + 4 + 1; /* len + 4 byte address + 1 byte checksum */
2485 /* This assumes S3 style downloads (4byte addresses). There should
2486 probably be a check, or the code changed to make it more
2488 buf[3] = memaddr >> 24;
2489 buf[4] = memaddr >> 16;
2490 buf[5] = memaddr >> 8;
2492 memcpy (&buf[7], myaddr, len);
2494 /* Note that the checksum is calculated on the raw data, not the
2495 hexified data. It includes the length, address and the data
2496 portions of the packet. */
2498 buf += 2; /* Point at length byte */
2499 for (i = 0; i < len + 4 + 1; i++)
2507 /* The following manifest controls whether we enable the simple flow
2508 control support provided by the monitor. If enabled the code will
2509 wait for an affirmative ACK between transmitting packets. */
2510 #define DOETXACK (1)
2512 /* The PMON fast-download uses an encoded packet format constructed of
2513 3byte data packets (encoded as 4 printable ASCII characters), and
2514 escape sequences (preceded by a '/'):
2517 'C' compare checksum (12bit value, not included in checksum calculation)
2518 'S' define symbol name (for addr) terminated with "," and padded to 4char boundary
2519 'Z' zero fill multiple of 3bytes
2520 'B' byte (12bit encoded value, of 8bit data)
2521 'A' address (36bit encoded value)
2522 'E' define entry as original address, and exit load
2524 The packets are processed in 4 character chunks, so the escape
2525 sequences that do not have any data (or variable length data)
2526 should be padded to a 4 character boundary. The decoder will give
2527 an error if the complete message block size is not a multiple of
2528 4bytes (size of record).
2530 The encoding of numbers is done in 6bit fields. The 6bit value is
2531 used to index into this string to get the specific character
2532 encoding for the value: */
2533 static char encoding[64] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789,.";
2535 /* Convert the number of bits required into an encoded number, 6bits
2536 at a time (range 0..63). Keep a checksum if required (passed
2537 pointer non-NULL). The function returns the number of encoded
2538 characters written into the buffer. */
2540 pmon_makeb64 (v, p, n, chksum)
2546 int count = (n / 6);
2548 if ((n % 12) != 0) {
2549 fprintf_unfiltered(stderr,"Fast encoding bitcount must be a multiple of 12bits: %dbit%s\n",n,(n == 1)?"":"s");
2553 fprintf_unfiltered(stderr,"Fast encoding cannot process more than 36bits at the moment: %dbits\n",n);
2557 /* Deal with the checksum: */
2558 if (chksum != NULL) {
2560 case 36: *chksum += ((v >> 24) & 0xFFF);
2561 case 24: *chksum += ((v >> 12) & 0xFFF);
2562 case 12: *chksum += ((v >> 0) & 0xFFF);
2568 *p++ = encoding[(v >> n) & 0x3F];
2574 /* Shorthand function (that could be in-lined) to output the zero-fill
2575 escape sequence into the data stream. */
2577 pmon_zeroset (recsize, buff, amount, chksum)
2581 unsigned int *chksum;
2585 sprintf(*buff,"/Z");
2586 count = pmon_makeb64 (*amount, (*buff + 2), 12, chksum);
2587 *buff += (count + 2);
2589 return(recsize + count + 2);
2593 pmon_checkset (recsize, buff, value)
2600 /* Add the checksum (without updating the value): */
2601 sprintf (*buff, "/C");
2602 count = pmon_makeb64 (*value, (*buff + 2), 12, NULL);
2603 *buff += (count + 2);
2604 sprintf (*buff, "\015");
2605 *buff += 2; /* include zero terminator */
2606 /* Forcing a checksum validation clears the sum: */
2608 return(recsize + count + 3);
2611 /* Amount of padding we leave after at the end of the output buffer,
2612 for the checksum and line termination characters: */
2613 #define CHECKSIZE (4 + 4 + 4 + 2)
2614 /* zero-fill, checksum, transfer end and line termination space. */
2616 /* The amount of binary data loaded from the object file in a single
2618 #define BINCHUNK (1024)
2620 /* Maximum line of data accepted by the monitor: */
2621 #define MAXRECSIZE (550)
2622 /* NOTE: This constant depends on the monitor being used. This value
2623 is for PMON 5.x on the Cogent Vr4300 board. */
2626 pmon_make_fastrec (outbuf, inbuf, inptr, inamount, recsize, csum, zerofill)
2628 unsigned char *inbuf;
2633 unsigned int *zerofill;
2638 /* This is a simple check to ensure that our data will fit within
2639 the maximum allowable record size. Each record output is 4bytes
2640 in length. We must allow space for a pending zero fill command,
2641 the record, and a checksum record. */
2642 while ((*recsize < (MAXRECSIZE - CHECKSIZE)) && ((inamount - *inptr) > 0)) {
2643 /* Process the binary data: */
2644 if ((inamount - *inptr) < 3) {
2646 *recsize = pmon_zeroset (*recsize, &p, zerofill, csum);
2648 count = pmon_makeb64 (inbuf[*inptr], &p[2], 12, csum);
2650 *recsize += (2 + count);
2653 unsigned int value = ((inbuf[*inptr + 0] << 16) | (inbuf[*inptr + 1] << 8) | inbuf[*inptr + 2]);
2654 /* Simple check for zero data. TODO: A better check would be
2655 to check the last, and then the middle byte for being zero
2656 (if the first byte is not). We could then check for
2657 following runs of zeros, and if above a certain size it is
2658 worth the 4 or 8 character hit of the byte insertions used
2659 to pad to the start of the zeroes. NOTE: This also depends
2660 on the alignment at the end of the zero run. */
2661 if (value == 0x00000000) {
2663 if (*zerofill == 0xFFF) /* 12bit counter */
2664 *recsize = pmon_zeroset (*recsize, &p, zerofill, csum);
2667 *recsize = pmon_zeroset (*recsize, &p, zerofill, csum);
2668 count = pmon_makeb64 (value, p, 24, csum);
2680 #if defined(DOETXACK)
2684 int c = SERIAL_READCHAR (mips_desc, 2);
2685 if ((c == SERIAL_TIMEOUT) || (c != 0x06)) {
2686 fprintf_unfiltered (gdb_stderr, "Failed to received valid ACK\n");
2687 return(-1); /* terminate the download */
2691 #endif /* DOETXACK */
2694 pmon_load_fast (file)
2699 unsigned char *binbuf;
2702 unsigned int csum = 0;
2703 static int hashmark = 1;
2708 buffer = (char *)malloc(MAXRECSIZE + 1);
2709 binbuf = (unsigned char *)malloc(BINCHUNK);
2711 abfd = bfd_openr(file,0);
2714 printf_filtered ("Unable to open file %s\n",file);
2718 if (bfd_check_format(abfd,bfd_object) == 0)
2720 printf_filtered("File is not an object file\n");
2724 /* Setup the required download state: */
2725 mips_send_command ("set dlproto etxack\015", -1);
2726 mips_send_command ("set dlecho off\015", -1);
2727 /* NOTE: We get a "cannot set variable" message if the variable is
2728 already defined to have the argument we give. The code doesn't
2729 care, since it just scans to the next prompt anyway. */
2730 /* Start the download: */
2731 mips_send_command (LOAD_CMD, 0);
2732 mips_expect ("Downloading from tty0, ^C to abort\015\012");
2734 /* Zero the checksum */
2735 sprintf(buffer,"/Kxx\015");
2736 reclen = strlen(buffer);
2737 SERIAL_WRITE (mips_desc, buffer, reclen);
2739 #if defined(DOETXACK)
2740 finished = pmon_check_ack();
2741 #endif /* DOETXACK */
2743 for (s = abfd->sections; s && !finished; s = s->next)
2744 if (s->flags & SEC_LOAD) /* only deal with loadable sections */
2746 bintotal += s->_raw_size;
2747 final = (s->vma + s->_raw_size);
2749 printf_filtered ("%s\t: 0x%4x .. 0x%4x ", s->name, s->vma,
2750 s->vma + s->_raw_size);
2751 gdb_flush (gdb_stdout);
2753 /* Output the starting address */
2754 sprintf(buffer,"/A");
2755 reclen = pmon_makeb64(s->vma,&buffer[2],36,&csum);
2756 buffer[2 + reclen] = '\015';
2757 buffer[3 + reclen] = '\0';
2758 reclen += 3; /* for the initial escape code and carriage return */
2759 SERIAL_WRITE (mips_desc, buffer, reclen);
2760 #if defined(DOETXACK)
2761 finished = pmon_check_ack();
2762 #endif /* DOETXACK */
2767 unsigned int zerofill = 0;
2773 for (i = 0; ((i < s->_raw_size) && !finished); i += binamount) {
2776 binamount = min (BINCHUNK, s->_raw_size - i);
2778 bfd_get_section_contents (abfd, s, binbuf, i, binamount);
2780 /* This keeps a rolling checksum, until we decide to output
2782 for (; ((binamount - binptr) > 0);) {
2783 pmon_make_fastrec (&bp, binbuf, &binptr, binamount, &reclen, &csum, &zerofill);
2784 if (reclen >= (MAXRECSIZE - CHECKSIZE)) {
2785 reclen = pmon_checkset (reclen, &bp, &csum);
2786 SERIAL_WRITE (mips_desc, buffer, reclen);
2787 #if defined(DOETXACK)
2788 finished = pmon_check_ack();
2790 zerofill = 0; /* do not transmit pending zerofills */
2793 #endif /* DOETXACK */
2796 putchar_unfiltered ('#');
2797 gdb_flush (gdb_stdout);
2801 reclen = 0; /* buffer processed */
2806 /* Ensure no out-standing zerofill requests: */
2808 reclen = pmon_zeroset (reclen, &bp, &zerofill, &csum);
2810 /* and then flush the line: */
2812 reclen = pmon_checkset (reclen, &bp, &csum);
2813 /* Currently pmon_checkset outputs the line terminator by
2814 default, so we write out the buffer so far: */
2815 SERIAL_WRITE (mips_desc, buffer, reclen);
2816 #if defined(DOETXACK)
2817 finished = pmon_check_ack();
2818 #endif /* DOETXACK */
2823 putchar_unfiltered ('\n');
2826 /* Terminate the transfer. We know that we have an empty output
2827 buffer at this point. */
2828 sprintf (buffer, "/E/E\015"); /* include dummy padding characters */
2829 reclen = strlen (buffer);
2830 SERIAL_WRITE (mips_desc, buffer, reclen);
2832 if (finished) { /* Ignore the termination message: */
2833 SERIAL_FLUSH_INPUT (mips_desc);
2834 } else { /* Deal with termination message: */
2835 char hexnumber[9]; /* includes '\0' space */
2836 mips_expect ("Entry Address = ");
2837 sprintf(hexnumber,"%x",final);
2838 mips_expect (hexnumber);
2839 #if defined(DOETXACK)
2840 mips_expect ("\015\012\006\015\012total = 0x");
2841 #else /* normal termination */
2842 mips_expect ("\015\012\015\012total = 0x");
2843 #endif /* !DOETXACK */
2844 sprintf(hexnumber,"%x",bintotal);
2845 mips_expect (hexnumber);
2846 mips_expect (" bytes\015\012");
2852 /* mips_load -- download a file. */
2855 mips_load (file, from_tty)
2859 /* Get the board out of remote debugging mode. */
2860 if (mips_exit_debug ())
2861 error ("mips_load: Couldn't get into monitor mode.");
2863 if (mips_monitor == MON_PMON)
2864 pmon_load_fast (file);
2866 mips_load_srec (file);
2870 /* Finally, make the PC point at the start address */
2873 write_pc (bfd_get_start_address (exec_bfd));
2875 inferior_pid = 0; /* No process now */
2877 /* This is necessary because many things were based on the PC at the time that
2878 we attached to the monitor, which is no longer valid now that we have loaded
2879 new code (and just changed the PC). Another way to do this might be to call
2880 normal_stop, except that the stack may not be valid, and things would get
2881 horribly confused... */
2883 clear_symtab_users ();
2886 /* The target vector. */
2888 struct target_ops mips_ops =
2890 "mips", /* to_shortname */
2891 "Remote MIPS debugging over serial line", /* to_longname */
2893 Debug a board using the MIPS remote debugging protocol over a serial line.\n\
2894 The argument is the device it is connected to or, if it contains a colon,\n\
2895 HOST:PORT to access a board over a network", /* to_doc */
2896 mips_open, /* to_open */
2897 mips_close, /* to_close */
2898 NULL, /* to_attach */
2899 mips_detach, /* to_detach */
2900 mips_resume, /* to_resume */
2901 mips_wait, /* to_wait */
2902 mips_fetch_registers, /* to_fetch_registers */
2903 mips_store_registers, /* to_store_registers */
2904 mips_prepare_to_store, /* to_prepare_to_store */
2905 mips_xfer_memory, /* to_xfer_memory */
2906 mips_files_info, /* to_files_info */
2907 mips_insert_breakpoint, /* to_insert_breakpoint */
2908 mips_remove_breakpoint, /* to_remove_breakpoint */
2909 NULL, /* to_terminal_init */
2910 NULL, /* to_terminal_inferior */
2911 NULL, /* to_terminal_ours_for_output */
2912 NULL, /* to_terminal_ours */
2913 NULL, /* to_terminal_info */
2914 mips_kill, /* to_kill */
2915 mips_load, /* to_load */
2916 NULL, /* to_lookup_symbol */
2917 mips_create_inferior, /* to_create_inferior */
2918 mips_mourn_inferior, /* to_mourn_inferior */
2919 NULL, /* to_can_run */
2920 NULL, /* to_notice_signals */
2921 0, /* to_thread_alive */
2923 process_stratum, /* to_stratum */
2925 1, /* to_has_all_memory */
2926 1, /* to_has_memory */
2927 1, /* to_has_stack */
2928 1, /* to_has_registers */
2929 1, /* to_has_execution */
2930 NULL, /* sections */
2931 NULL, /* sections_end */
2932 OPS_MAGIC /* to_magic */
2935 /* An alternative target vector: */
2936 struct target_ops pmon_ops =
2938 "pmon", /* to_shortname */
2939 "Remote MIPS debugging over serial line", /* to_longname */
2941 Debug a board using the PMON MIPS remote debugging protocol over a serial\n\
2942 line. The argument is the device it is connected to or, if it contains a\n\
2943 colon, HOST:PORT to access a board over a network", /* to_doc */
2944 pmon_open, /* to_open */
2945 mips_close, /* to_close */
2946 NULL, /* to_attach */
2947 mips_detach, /* to_detach */
2948 mips_resume, /* to_resume */
2949 pmon_wait, /* to_wait */
2950 mips_fetch_registers, /* to_fetch_registers */
2951 mips_store_registers, /* to_store_registers */
2952 mips_prepare_to_store, /* to_prepare_to_store */
2953 mips_xfer_memory, /* to_xfer_memory */
2954 mips_files_info, /* to_files_info */
2955 mips_insert_breakpoint, /* to_insert_breakpoint */
2956 mips_remove_breakpoint, /* to_remove_breakpoint */
2957 NULL, /* to_terminal_init */
2958 NULL, /* to_terminal_inferior */
2959 NULL, /* to_terminal_ours_for_output */
2960 NULL, /* to_terminal_ours */
2961 NULL, /* to_terminal_info */
2962 mips_kill, /* to_kill */
2963 mips_load, /* to_load */
2964 NULL, /* to_lookup_symbol */
2965 mips_create_inferior, /* to_create_inferior */
2966 mips_mourn_inferior, /* to_mourn_inferior */
2967 NULL, /* to_can_run */
2968 NULL, /* to_notice_signals */
2969 0, /* to_thread_alive */
2971 process_stratum, /* to_stratum */
2973 1, /* to_has_all_memory */
2974 1, /* to_has_memory */
2975 1, /* to_has_stack */
2976 1, /* to_has_registers */
2977 1, /* to_has_execution */
2978 NULL, /* sections */
2979 NULL, /* sections_end */
2980 OPS_MAGIC /* to_magic */
2984 _initialize_remote_mips ()
2986 add_target (&mips_ops);
2987 add_target (&pmon_ops);
2990 add_set_cmd ("timeout", no_class, var_zinteger,
2991 (char *) &mips_receive_wait,
2992 "Set timeout in seconds for remote MIPS serial I/O.",
2997 add_set_cmd ("retransmit-timeout", no_class, var_zinteger,
2998 (char *) &mips_retransmit_wait,
2999 "Set retransmit timeout in seconds for remote MIPS serial I/O.\n\
3000 This is the number of seconds to wait for an acknowledgement to a packet\n\
3001 before resending the packet.", &setlist),
3005 add_set_cmd ("syn-garbage-limit", no_class, var_zinteger,
3006 (char *) &mips_syn_garbage,
3007 "Set the maximum number of characters to ignore when scanning for a SYN.\n\
3008 This is the maximum number of characters GDB will ignore when trying to\n\
3009 synchronize with the remote system. A value of -1 means that there is no limit\n\
3010 (Note that these characters are printed out even though they are ignored.)",