]>
Commit | Line | Data |
---|---|---|
6df01ab8 MF |
1 | /* This must come before any other includes. */ |
2 | #include "defs.h" | |
3 | ||
c906108c SS |
4 | #include "sim-main.h" |
5 | #include "sim-options.h" | |
6 | #include "v850_sim.h" | |
7 | #include "sim-assert.h" | |
8 | #include "itable.h" | |
9 | ||
c906108c | 10 | #include <stdlib.h> |
c906108c | 11 | #include <string.h> |
c906108c SS |
12 | |
13 | #include "bfd.h" | |
14 | ||
96b1eb7e MF |
15 | #include "target-newlib-syscall.h" |
16 | ||
c906108c SS |
17 | static const char * get_insn_name (sim_cpu *, int); |
18 | ||
a3976a7c | 19 | /* For compatibility. */ |
c906108c SS |
20 | SIM_DESC simulator; |
21 | ||
a3976a7c | 22 | /* V850 interrupt model. */ |
c906108c SS |
23 | |
24 | enum interrupt_type | |
25 | { | |
26 | int_reset, | |
27 | int_nmi, | |
28 | int_intov1, | |
29 | int_intp10, | |
30 | int_intp11, | |
31 | int_intp12, | |
32 | int_intp13, | |
33 | int_intcm4, | |
34 | num_int_types | |
35 | }; | |
36 | ||
a3976a7c NC |
37 | const char *interrupt_names[] = |
38 | { | |
c906108c SS |
39 | "reset", |
40 | "nmi", | |
41 | "intov1", | |
42 | "intp10", | |
43 | "intp11", | |
44 | "intp12", | |
45 | "intp13", | |
46 | "intcm4", | |
47 | NULL | |
48 | }; | |
49 | ||
50 | static void | |
a3976a7c | 51 | do_interrupt (SIM_DESC sd, void *data) |
c906108c | 52 | { |
4e9586f0 | 53 | const char **interrupt_name = (const char**)data; |
c906108c SS |
54 | enum interrupt_type inttype; |
55 | inttype = (interrupt_name - STATE_WATCHPOINTS (sd)->interrupt_names); | |
56 | ||
57 | /* For a hardware reset, drop everything and jump to the start | |
58 | address */ | |
59 | if (inttype == int_reset) | |
60 | { | |
61 | PC = 0; | |
62 | PSW = 0x20; | |
63 | ECR = 0; | |
64 | sim_engine_restart (sd, NULL, NULL, NULL_CIA); | |
65 | } | |
66 | ||
67 | /* Deliver an NMI when allowed */ | |
68 | if (inttype == int_nmi) | |
69 | { | |
70 | if (PSW & PSW_NP) | |
71 | { | |
72 | /* We're already working on an NMI, so this one must wait | |
73 | around until the previous one is done. The processor | |
74 | ignores subsequent NMIs, so we don't need to count them. | |
75 | Just keep re-scheduling a single NMI until it manages to | |
76 | be delivered */ | |
77 | if (STATE_CPU (sd, 0)->pending_nmi != NULL) | |
78 | sim_events_deschedule (sd, STATE_CPU (sd, 0)->pending_nmi); | |
79 | STATE_CPU (sd, 0)->pending_nmi = | |
80 | sim_events_schedule (sd, 1, do_interrupt, data); | |
81 | return; | |
82 | } | |
83 | else | |
84 | { | |
85 | /* NMI can be delivered. Do not deschedule pending_nmi as | |
86 | that, if still in the event queue, is a second NMI that | |
87 | needs to be delivered later. */ | |
88 | FEPC = PC; | |
89 | FEPSW = PSW; | |
90 | /* Set the FECC part of the ECR. */ | |
91 | ECR &= 0x0000ffff; | |
92 | ECR |= 0x10; | |
93 | PSW |= PSW_NP; | |
94 | PSW &= ~PSW_EP; | |
95 | PSW |= PSW_ID; | |
96 | PC = 0x10; | |
97 | sim_engine_restart (sd, NULL, NULL, NULL_CIA); | |
98 | } | |
99 | } | |
100 | ||
101 | /* deliver maskable interrupt when allowed */ | |
102 | if (inttype > int_nmi && inttype < num_int_types) | |
103 | { | |
104 | if ((PSW & PSW_NP) || (PSW & PSW_ID)) | |
105 | { | |
106 | /* Can't deliver this interrupt, reschedule it for later */ | |
107 | sim_events_schedule (sd, 1, do_interrupt, data); | |
108 | return; | |
109 | } | |
110 | else | |
111 | { | |
112 | /* save context */ | |
113 | EIPC = PC; | |
114 | EIPSW = PSW; | |
115 | /* Disable further interrupts. */ | |
116 | PSW |= PSW_ID; | |
117 | /* Indicate that we're doing interrupt not exception processing. */ | |
118 | PSW &= ~PSW_EP; | |
119 | /* Clear the EICC part of the ECR, will set below. */ | |
120 | ECR &= 0xffff0000; | |
121 | switch (inttype) | |
122 | { | |
123 | case int_intov1: | |
124 | PC = 0x80; | |
125 | ECR |= 0x80; | |
126 | break; | |
127 | case int_intp10: | |
128 | PC = 0x90; | |
129 | ECR |= 0x90; | |
130 | break; | |
131 | case int_intp11: | |
132 | PC = 0xa0; | |
133 | ECR |= 0xa0; | |
134 | break; | |
135 | case int_intp12: | |
136 | PC = 0xb0; | |
137 | ECR |= 0xb0; | |
138 | break; | |
139 | case int_intp13: | |
140 | PC = 0xc0; | |
141 | ECR |= 0xc0; | |
142 | break; | |
143 | case int_intcm4: | |
144 | PC = 0xd0; | |
145 | ECR |= 0xd0; | |
146 | break; | |
147 | default: | |
148 | /* Should never be possible. */ | |
149 | sim_engine_abort (sd, NULL, NULL_CIA, | |
150 | "do_interrupt - internal error - bad switch"); | |
151 | break; | |
152 | } | |
153 | } | |
154 | sim_engine_restart (sd, NULL, NULL, NULL_CIA); | |
155 | } | |
156 | ||
157 | /* some other interrupt? */ | |
158 | sim_engine_abort (sd, NULL, NULL_CIA, | |
159 | "do_interrupt - internal error - interrupt %d unknown", | |
160 | inttype); | |
161 | } | |
162 | ||
163 | /* Return name of an insn, used by insn profiling. */ | |
164 | ||
165 | static const char * | |
166 | get_insn_name (sim_cpu *cpu, int i) | |
167 | { | |
168 | return itable[i].name; | |
169 | } | |
170 | ||
171 | /* These default values correspond to expected usage for the chip. */ | |
172 | ||
436c3d9d | 173 | uint32_t OP[4]; |
c906108c | 174 | |
14c9ad2e MF |
175 | static sim_cia |
176 | v850_pc_get (sim_cpu *cpu) | |
177 | { | |
178 | return PC; | |
179 | } | |
180 | ||
181 | static void | |
182 | v850_pc_set (sim_cpu *cpu, sim_cia pc) | |
183 | { | |
184 | PC = pc; | |
185 | } | |
c906108c | 186 | |
ee1cffd3 MF |
187 | static int v850_reg_fetch (SIM_CPU *, int, void *, int); |
188 | static int v850_reg_store (SIM_CPU *, int, const void *, int); | |
e1211e55 | 189 | |
c906108c | 190 | SIM_DESC |
a3976a7c NC |
191 | sim_open (SIM_OPEN_KIND kind, |
192 | host_callback * cb, | |
193 | struct bfd * abfd, | |
2e3d4f4d | 194 | char * const * argv) |
c906108c | 195 | { |
14c9ad2e | 196 | int i; |
c906108c SS |
197 | SIM_DESC sd = sim_state_alloc (kind, cb); |
198 | int mach; | |
199 | ||
200 | SIM_ASSERT (STATE_MAGIC (sd) == SIM_MAGIC_NUMBER); | |
201 | ||
f9a4d543 MF |
202 | /* Set default options before parsing user options. */ |
203 | current_target_byte_order = BFD_ENDIAN_LITTLE; | |
96b1eb7e | 204 | cb->syscall_map = cb_v850_syscall_map; |
f9a4d543 | 205 | |
14c9ad2e | 206 | /* The cpu data is kept in a separately allocated chunk of memory. */ |
d5a71b11 | 207 | if (sim_cpu_alloc_all (sd, 1) != SIM_RC_OK) |
14c9ad2e MF |
208 | return 0; |
209 | ||
c906108c SS |
210 | /* for compatibility */ |
211 | simulator = sd; | |
212 | ||
213 | /* FIXME: should be better way of setting up interrupts */ | |
c906108c SS |
214 | STATE_WATCHPOINTS (sd)->interrupt_handler = do_interrupt; |
215 | STATE_WATCHPOINTS (sd)->interrupt_names = interrupt_names; | |
216 | ||
217 | /* Initialize the mechanism for doing insn profiling. */ | |
218 | CPU_INSN_NAME (STATE_CPU (sd, 0)) = get_insn_name; | |
219 | CPU_MAX_INSNS (STATE_CPU (sd, 0)) = nr_itable_entries; | |
220 | ||
221 | if (sim_pre_argv_init (sd, argv[0]) != SIM_RC_OK) | |
222 | return 0; | |
223 | ||
224 | /* Allocate core managed memory */ | |
225 | ||
226 | /* "Mirror" the ROM addresses below 1MB. */ | |
f08708cb | 227 | sim_do_commandf (sd, "memory region 0,0x100000,0x%x", V850_ROM_SIZE); |
c906108c | 228 | /* Chunk of ram adjacent to rom */ |
f08708cb | 229 | sim_do_commandf (sd, "memory region 0x100000,0x%x", V850_LOW_END-0x100000); |
c906108c SS |
230 | /* peripheral I/O region - mirror 1K across 4k (0x1000) */ |
231 | sim_do_command (sd, "memory region 0xfff000,0x1000,1024"); | |
232 | /* similarly if in the internal RAM region */ | |
233 | sim_do_command (sd, "memory region 0xffe000,0x1000,1024"); | |
234 | ||
77cf2ef5 | 235 | /* The parser will print an error message for us, so we silently return. */ |
c906108c SS |
236 | if (sim_parse_args (sd, argv) != SIM_RC_OK) |
237 | { | |
238 | /* Uninstall the modules to avoid memory leaks, | |
239 | file descriptor leaks, etc. */ | |
240 | sim_module_uninstall (sd); | |
241 | return 0; | |
242 | } | |
243 | ||
244 | /* check for/establish the a reference program image */ | |
e8f20a28 | 245 | if (sim_analyze_program (sd, STATE_PROG_FILE (sd), abfd) != SIM_RC_OK) |
c906108c SS |
246 | { |
247 | sim_module_uninstall (sd); | |
248 | return 0; | |
249 | } | |
250 | ||
251 | /* establish any remaining configuration options */ | |
252 | if (sim_config (sd) != SIM_RC_OK) | |
253 | { | |
254 | sim_module_uninstall (sd); | |
255 | return 0; | |
256 | } | |
257 | ||
258 | if (sim_post_argv_init (sd) != SIM_RC_OK) | |
259 | { | |
260 | /* Uninstall the modules to avoid memory leaks, | |
261 | file descriptor leaks, etc. */ | |
262 | sim_module_uninstall (sd); | |
263 | return 0; | |
264 | } | |
265 | ||
266 | ||
267 | /* determine the machine type */ | |
268 | if (STATE_ARCHITECTURE (sd) != NULL | |
85367826 NC |
269 | && (STATE_ARCHITECTURE (sd)->arch == bfd_arch_v850 |
270 | || STATE_ARCHITECTURE (sd)->arch == bfd_arch_v850_rh850)) | |
c906108c SS |
271 | mach = STATE_ARCHITECTURE (sd)->mach; |
272 | else | |
273 | mach = bfd_mach_v850; /* default */ | |
274 | ||
275 | /* set machine specific configuration */ | |
276 | switch (mach) | |
277 | { | |
278 | case bfd_mach_v850: | |
279 | case bfd_mach_v850e: | |
c5ea1d53 | 280 | case bfd_mach_v850e1: |
85367826 NC |
281 | case bfd_mach_v850e2: |
282 | case bfd_mach_v850e2v3: | |
67d7515b | 283 | case bfd_mach_v850e3v5: |
c906108c SS |
284 | STATE_CPU (sd, 0)->psw_mask = (PSW_NP | PSW_EP | PSW_ID | PSW_SAT |
285 | | PSW_CY | PSW_OV | PSW_S | PSW_Z); | |
286 | break; | |
c906108c SS |
287 | } |
288 | ||
14c9ad2e MF |
289 | /* CPU specific initialization. */ |
290 | for (i = 0; i < MAX_NR_PROCESSORS; ++i) | |
291 | { | |
292 | SIM_CPU *cpu = STATE_CPU (sd, i); | |
293 | ||
e1211e55 MF |
294 | CPU_REG_FETCH (cpu) = v850_reg_fetch; |
295 | CPU_REG_STORE (cpu) = v850_reg_store; | |
14c9ad2e MF |
296 | CPU_PC_FETCH (cpu) = v850_pc_get; |
297 | CPU_PC_STORE (cpu) = v850_pc_set; | |
298 | } | |
299 | ||
c906108c SS |
300 | return sd; |
301 | } | |
302 | ||
c906108c | 303 | SIM_RC |
a3976a7c NC |
304 | sim_create_inferior (SIM_DESC sd, |
305 | struct bfd * prog_bfd, | |
2e3d4f4d MF |
306 | char * const *argv, |
307 | char * const *env) | |
c906108c SS |
308 | { |
309 | memset (&State, 0, sizeof (State)); | |
310 | if (prog_bfd != NULL) | |
311 | PC = bfd_get_start_address (prog_bfd); | |
c906108c SS |
312 | return SIM_RC_OK; |
313 | } | |
314 | ||
e1211e55 | 315 | static int |
ee1cffd3 | 316 | v850_reg_fetch (SIM_CPU *cpu, int rn, void *memory, int length) |
c906108c | 317 | { |
436c3d9d | 318 | *(uint32_t*)memory = H2T_4 (State.regs[rn]); |
c906108c SS |
319 | return -1; |
320 | } | |
e1211e55 MF |
321 | |
322 | static int | |
ee1cffd3 | 323 | v850_reg_store (SIM_CPU *cpu, int rn, const void *memory, int length) |
c906108c | 324 | { |
436c3d9d | 325 | State.regs[rn] = T2H_4 (*(uint32_t *) memory); |
dae477fe | 326 | return length; |
c906108c | 327 | } |