1 /* This file defines the interface between the d10v simulator and gdb.
3 Copyright (C) 1999-2017 Free 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 3 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, see <http://www.gnu.org/licenses/>. */
20 #if !defined (SIM_D10V_H)
23 /* GDB interprets addresses as:
25 0x00xxxxxx: Physical unified memory segment (Unified memory)
26 0x01xxxxxx: Physical instruction memory segment (On-chip insn memory)
27 0x02xxxxxx: Physical data memory segment (On-chip data memory)
28 0x10xxxxxx: Logical data address segment (DMAP translated memory)
29 0x11xxxxxx: Logical instruction address segment (IMAP translated memory)
31 The remote d10v board interprets addresses as:
33 0x00xxxxxx: Physical unified memory segment (Unified memory)
34 0x01xxxxxx: Physical instruction memory segment (On-chip insn memory)
35 0x02xxxxxx: Physical data memory segment (On-chip data memory)
37 The following translate a virtual DMAP/IMAP offset into a physical
38 memory segment assigning the translated address to PHYS. Since a
39 memory access may cross a page boundrary the number of bytes for
40 which the translation is applicable (or 0 for an invalid virtual
41 offset) is returned. */
45 SIM_D10V_MEMORY_UNIFIED
= 0x00000000,
46 SIM_D10V_MEMORY_INSN
= 0x01000000,
47 SIM_D10V_MEMORY_DATA
= 0x02000000,
48 SIM_D10V_MEMORY_DMAP
= 0x10000000,
49 SIM_D10V_MEMORY_IMAP
= 0x11000000
52 /* The simulator makes use of the following register information. */
92 SIM_D10V_IMAP0_REGNUM
,
93 SIM_D10V_IMAP1_REGNUM
,
94 SIM_D10V_DMAP0_REGNUM
,
95 SIM_D10V_DMAP1_REGNUM
,
96 SIM_D10V_DMAP2_REGNUM
,
97 SIM_D10V_DMAP3_REGNUM
,
98 SIM_D10V_TS2_DMAP_REGNUM
103 SIM_D10V_NR_R_REGS
= 16,
104 SIM_D10V_NR_A_REGS
= 2,
105 SIM_D10V_NR_IMAP_REGS
= 2,
106 SIM_D10V_NR_DMAP_REGS
= 4,
107 SIM_D10V_NR_CR_REGS
= 16