home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 7 / FreshFishVol7.bin / bbs / gnu / gdb-4.12-src.lha / GNU / src / amiga / gdb-4.12 / gdb / remote-mips.c < prev    next >
C/C++ Source or Header  |  1994-02-03  |  40KB  |  1,431 lines

  1. /* Remote debugging interface for MIPS remote debugging protocol.
  2.    Copyright 1993, 1994 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., 675 Mass Ave, Cambridge, MA 02139, 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. #include <varargs.h>
  35.  
  36. /* Prototypes for local functions.  */
  37.  
  38. static int
  39. mips_readchar PARAMS ((int timeout));
  40.  
  41. static int
  42. mips_receive_header PARAMS ((unsigned char *hdr, int *pgarbage, int ch,
  43.                  int timeout));
  44.  
  45. static int
  46. mips_receive_trailer PARAMS ((unsigned char *trlr, int *pgarbage, int *pch,
  47.                   int timeout));
  48.  
  49. static int mips_cksum PARAMS ((const unsigned char *hdr,
  50.                    const unsigned char *data,
  51.                    int len));
  52.  
  53. static void
  54. mips_send_packet PARAMS ((const char *s, int get_ack));
  55.  
  56. static int mips_receive_packet PARAMS ((char *buff, int throw_error,
  57.                     int timeout));
  58.  
  59. static int
  60. mips_request PARAMS ((char cmd, unsigned int addr, unsigned int data,
  61.               int *perr, int timeout));
  62.  
  63. static void
  64. mips_initialize PARAMS ((void));
  65.  
  66. static void
  67. mips_open PARAMS ((char *name, int from_tty));
  68.  
  69. static void
  70. mips_close PARAMS ((int quitting));
  71.  
  72. static void
  73. mips_detach PARAMS ((char *args, int from_tty));
  74.  
  75. static void mips_resume PARAMS ((int pid, int step,
  76.                  enum target_signal siggnal));
  77.  
  78. static int
  79. mips_wait PARAMS ((int pid, struct target_waitstatus *status));
  80.  
  81. static int
  82. mips_map_regno PARAMS ((int regno));
  83.  
  84. static void
  85. mips_fetch_registers PARAMS ((int regno));
  86.  
  87. static void
  88. mips_prepare_to_store PARAMS ((void));
  89.  
  90. static void
  91. mips_store_registers PARAMS ((int regno));
  92.  
  93. static int
  94. mips_fetch_word PARAMS ((CORE_ADDR addr));
  95.  
  96. static void
  97. mips_store_word PARAMS ((CORE_ADDR addr, int value));
  98.  
  99. static int
  100. mips_xfer_memory PARAMS ((CORE_ADDR memaddr, char *myaddr, int len,
  101.               int write, struct target_ops *ignore));
  102.  
  103. static void
  104. mips_files_info PARAMS ((struct target_ops *ignore));
  105.  
  106. static void
  107. mips_load PARAMS ((char *args, int from_tty));
  108.  
  109. static void
  110. mips_create_inferior PARAMS ((char *execfile, char *args, char **env));
  111.  
  112. static void
  113. mips_mourn_inferior PARAMS ((void));
  114.  
  115. /* A forward declaration.  */
  116. extern struct target_ops mips_ops;
  117.  
  118. /* The MIPS remote debugging interface is built on top of a simple
  119.    packet protocol.  Each packet is organized as follows:
  120.  
  121.    SYN    The first character is always a SYN (ASCII 026, or ^V).  SYN
  122.     may not appear anywhere else in the packet.  Any time a SYN is
  123.     seen, a new packet should be assumed to have begun.
  124.  
  125.    TYPE_LEN
  126.     This byte contains the upper five bits of the logical length
  127.     of the data section, plus a single bit indicating whether this
  128.     is a data packet or an acknowledgement.  The documentation
  129.     indicates that this bit is 1 for a data packet, but the actual
  130.     board uses 1 for an acknowledgement.  The value of the byte is
  131.         0x40 + (ack ? 0x20 : 0) + (len >> 6)
  132.     (we always have 0 <= len < 1024).  Acknowledgement packets do
  133.     not carry data, and must have a data length of 0.
  134.  
  135.    LEN1 This byte contains the lower six bits of the logical length of
  136.     the data section.  The value is
  137.          0x40 + (len & 0x3f)
  138.  
  139.    SEQ    This byte contains the six bit sequence number of the packet.
  140.     The value is
  141.         0x40 + seq
  142.     An acknowlegment packet contains the sequence number of the
  143.     packet being acknowledged plus 1 module 64.  Data packets are
  144.     transmitted in sequence.  There may only be one outstanding
  145.     unacknowledged data packet at a time.  The sequence numbers
  146.     are independent in each direction.  If an acknowledgement for
  147.     the previous packet is received (i.e., an acknowledgement with
  148.     the sequence number of the packet just sent) the packet just
  149.     sent should be retransmitted.  If no acknowledgement is
  150.     received within a timeout period, the packet should be
  151.     retransmitted.  This has an unfortunate failure condition on a
  152.     high-latency line, as a delayed acknowledgement may lead to an
  153.     endless series of duplicate packets.
  154.  
  155.    DATA    The actual data bytes follow.  The following characters are
  156.     escaped inline with DLE (ASCII 020, or ^P):
  157.         SYN (026)    DLE S
  158.         DLE (020)    DLE D
  159.         ^C  (003)    DLE C
  160.         ^S  (023)    DLE s
  161.         ^Q  (021)    DLE q
  162.     The additional DLE characters are not counted in the logical
  163.     length stored in the TYPE_LEN and LEN1 bytes.
  164.  
  165.    CSUM1
  166.    CSUM2
  167.    CSUM3
  168.     These bytes contain an 18 bit checksum of the complete
  169.     contents of the packet excluding the SEQ byte and the
  170.     CSUM[123] bytes.  The checksum is simply the twos complement
  171.     addition of all the bytes treated as unsigned characters.  The
  172.     values of the checksum bytes are:
  173.         CSUM1: 0x40 + ((cksum >> 12) & 0x3f)
  174.         CSUM2: 0x40 + ((cksum >> 6) & 0x3f)
  175.         CSUM3: 0x40 + (cksum & 0x3f)
  176.  
  177.    It happens that the MIPS remote debugging protocol always
  178.    communicates with ASCII strings.  Because of this, this
  179.    implementation doesn't bother to handle the DLE quoting mechanism,
  180.    since it will never be required.  */
  181.  
  182. /* The SYN character which starts each packet.  */
  183. #define SYN '\026'
  184.  
  185. /* The 0x40 used to offset each packet (this value ensures that all of
  186.    the header and trailer bytes, other than SYN, are printable ASCII
  187.    characters).  */
  188. #define HDR_OFFSET 0x40
  189.  
  190. /* The indices of the bytes in the packet header.  */
  191. #define HDR_INDX_SYN 0
  192. #define HDR_INDX_TYPE_LEN 1
  193. #define HDR_INDX_LEN1 2
  194. #define HDR_INDX_SEQ 3
  195. #define HDR_LENGTH 4
  196.  
  197. /* The data/ack bit in the TYPE_LEN header byte.  */
  198. #define TYPE_LEN_DA_BIT 0x20
  199. #define TYPE_LEN_DATA 0
  200. #define TYPE_LEN_ACK TYPE_LEN_DA_BIT
  201.  
  202. /* How to compute the header bytes.  */
  203. #define HDR_SET_SYN(data, len, seq) (SYN)
  204. #define HDR_SET_TYPE_LEN(data, len, seq) \
  205.   (HDR_OFFSET \
  206.    + ((data) ? TYPE_LEN_DATA : TYPE_LEN_ACK) \
  207.    + (((len) >> 6) & 0x1f))
  208. #define HDR_SET_LEN1(data, len, seq) (HDR_OFFSET + ((len) & 0x3f))
  209. #define HDR_SET_SEQ(data, len, seq) (HDR_OFFSET + (seq))
  210.  
  211. /* Check that a header byte is reasonable.  */
  212. #define HDR_CHECK(ch) (((ch) & HDR_OFFSET) == HDR_OFFSET)
  213.  
  214. /* Get data from the header.  These macros evaluate their argument
  215.    multiple times.  */
  216. #define HDR_IS_DATA(hdr) \
  217.   (((hdr)[HDR_INDX_TYPE_LEN] & TYPE_LEN_DA_BIT) == TYPE_LEN_DATA)
  218. #define HDR_GET_LEN(hdr) \
  219.   ((((hdr)[HDR_INDX_TYPE_LEN] & 0x1f) << 6) + (((hdr)[HDR_INDX_LEN1] & 0x3f)))
  220. #define HDR_GET_SEQ(hdr) ((hdr)[HDR_INDX_SEQ] & 0x3f)
  221.  
  222. /* The maximum data length.  */
  223. #define DATA_MAXLEN 1023
  224.  
  225. /* The trailer offset.  */
  226. #define TRLR_OFFSET HDR_OFFSET
  227.  
  228. /* The indices of the bytes in the packet trailer.  */
  229. #define TRLR_INDX_CSUM1 0
  230. #define TRLR_INDX_CSUM2 1
  231. #define TRLR_INDX_CSUM3 2
  232. #define TRLR_LENGTH 3
  233.  
  234. /* How to compute the trailer bytes.  */
  235. #define TRLR_SET_CSUM1(cksum) (TRLR_OFFSET + (((cksum) >> 12) & 0x3f))
  236. #define TRLR_SET_CSUM2(cksum) (TRLR_OFFSET + (((cksum) >>  6) & 0x3f))
  237. #define TRLR_SET_CSUM3(cksum) (TRLR_OFFSET + (((cksum)      ) & 0x3f))
  238.  
  239. /* Check that a trailer byte is reasonable.  */
  240. #define TRLR_CHECK(ch) (((ch) & TRLR_OFFSET) == TRLR_OFFSET)
  241.  
  242. /* Get data from the trailer.  This evaluates its argument multiple
  243.    times.  */
  244. #define TRLR_GET_CKSUM(trlr) \
  245.   ((((trlr)[TRLR_INDX_CSUM1] & 0x3f) << 12) \
  246.    + (((trlr)[TRLR_INDX_CSUM2] & 0x3f) <<  6) \
  247.    + ((trlr)[TRLR_INDX_CSUM3] & 0x3f))
  248.  
  249. /* The sequence number modulos.  */
  250. #define SEQ_MODULOS (64)
  251.  
  252. /* Set to 1 if the target is open.  */
  253. static int mips_is_open;
  254.  
  255. /* Set to 1 while the connection is being initialized.  */
  256. static int mips_initializing;
  257.  
  258. /* The next sequence number