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