1 /* Remote target communications for d10v connected via a serial line.
2 Copyright 1988, 1991, 1992, 1993, 1994, 1995, 1996, 1997 Free
3 Software Foundation, Inc.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
22 #include "gdb_string.h"
30 /*#include "terminal.h"*/
33 #include "gdb-stabs.h"
34 #include "gdbthread.h"
39 #include <sys/types.h>
45 /* Prototypes for local functions */
47 static void remote_d10v_open
PARAMS ((char *name
, int from_tty
));
49 /* Define the target subroutine names */
50 static struct target_ops remote_d10v_ops
;
52 /* Open a connection to a remote debugger.
53 NAME is the filename used for communication. */
56 remote_d10v_open (name
, from_tty
)
61 push_remote_target (name
, from_tty
);
65 /* Translate a GDB virtual ADDR/LEN into a format the remote target
66 understands. Returns number of bytes that can be transfered
67 starting at taddr, ZERO if no bytes can be transfered. */
69 remote_d10v_translate_xfer_address (memaddr
, nr_bytes
, taddr
)
77 char *from
= "unknown";
79 unsigned short imap0
= read_register (IMAP0_REGNUM
);
80 unsigned short imap1
= read_register (IMAP1_REGNUM
);
81 unsigned short dmap
= read_register (DMAP_REGNUM
);
83 /* GDB interprets addresses as:
85 0x00xxxxxx: Logical data address segment (DMAP translated memory)
86 0x01xxxxxx: Logical instruction address segment (IMAP translated memory)
87 0x10xxxxxx: Physical data memory segment (On-chip data memory)
88 0x11xxxxxx: Physical instruction memory segment (On-chip insn memory)
89 0x12xxxxxx: Phisical unified memory segment (Unified memory)
91 The remote d10v board interprets addresses as:
93 0x00xxxxxx: Phisical unified memory segment (Unified memory)
94 0x01xxxxxx: Physical instruction memory segment (On-chip insn memory)
95 0x02xxxxxx: Physical data memory segment (On-chip data memory)
97 Translate according to current IMAP/dmap registers */
100 targ_unified
= 0x00000000,
101 targ_insn
= 0x01000000,
102 targ_data
= 0x02000000,
105 seg
= (memaddr
>> 24);
106 off
= (memaddr
& 0xffffffL
);
110 case 0x00: /* in logical data address segment */
112 from
= "logical-data";
116 phys
= targ_data
+ off
;
117 if (off
+ nr_bytes
> 0x7fffL
)
118 /* don't cross VM boundary */
119 nr_bytes
= 0x7fffL
- off
+ 1;
122 else if (off
<= 0xbfffL
)
127 /* Instruction memory */
128 phys
= targ_insn
| ((map
& 0xf) << 14) | (off
& 0x3fff);
134 phys
= targ_unified
| ((map
& 0x3ff) << 14) | (off
& 0x3fff);
137 if (off
+ nr_bytes
> 0xbfffL
)
138 /* don't cross VM boundary */
139 nr_bytes
= (0xbfffL
- off
+ 1);
143 /* Logical address out side of data segments, not supported */
149 case 0x01: /* in logical instruction address segment */
152 from
= "logical-insn";
157 else if (off
<= 0x3ffffL
)
163 /* Logical address outside of IMAP[01] segment, not
167 if ((off
& 0x1ffff) + nr_bytes
> 0x1ffffL
)
169 /* don't cross VM boundary */
170 nr_bytes
= 0x1ffffL
- (off
& 0x1ffffL
) + 1;
173 /* Instruction memory */
175 phys
= targ_insn
| off
;
180 phys
= ((map
& 0x7fL
) << 17) + (off
& 0x1ffffL
);
181 if (phys
> 0xffffffL
)
182 /* Address outside of unified address segment */
184 phys
|= targ_unified
;
190 case 0x10: /* Physical data memory segment */
192 phys
= targ_data
| off
;
196 case 0x11: /* Physical instruction memory */
198 phys
= targ_insn
| off
;
202 case 0x12: /* Physical unified memory */
203 from
= "phys-unified";
204 phys
= targ_unified
| off
;
219 _initialize_remote_d10v ()
221 remote_d10v_ops
.to_shortname
= "d10v";
222 remote_d10v_ops
.to_longname
= "Remote d10v serial target in gdb-specific protocol";
223 remote_d10v_ops
.to_doc
= "Use a remote d10v via a serial line, using a gdb-specific protocol.\n\
224 Specify the serial device it is connected to (e.g. /dev/ttya).";
225 remote_d10v_ops
.to_open
= remote_d10v_open
;
227 add_target (&remote_d10v_ops
);