2 * LatticeMico32 virtual CPU header.
4 * Copyright (c) 2010 Michael Walle <michael@walle.cc>
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
23 #define TARGET_LONG_BITS 32
25 #define CPUArchState struct CPULM32State
28 #include "qemu-common.h"
29 #include "exec/cpu-defs.h"
31 typedef struct CPULM32State CPULM32State
;
33 #define TARGET_HAS_ICE 1
35 #define ELF_MACHINE EM_LATTICEMICO32
37 #define NB_MMU_MODES 1
38 #define TARGET_PAGE_BITS 12
39 static inline int cpu_mmu_index(CPULM32State
*env
)
44 #define TARGET_PHYS_ADDR_SPACE_BITS 32
45 #define TARGET_VIRT_ADDR_SPACE_BITS 32
47 /* Exceptions indices */
61 R_R0
= 0, R_R1
, R_R2
, R_R3
, R_R4
, R_R5
, R_R6
, R_R7
, R_R8
, R_R9
, R_R10
,
62 R_R11
, R_R12
, R_R13
, R_R14
, R_R15
, R_R16
, R_R17
, R_R18
, R_R19
, R_R20
,
63 R_R21
, R_R22
, R_R23
, R_R24
, R_R25
, R_R26
, R_R27
, R_R28
, R_R29
, R_R30
,
67 /* Register aliases */
139 LM32_FEATURE_MULTIPLY
= 1,
140 LM32_FEATURE_DIVIDE
= 2,
141 LM32_FEATURE_SHIFT
= 4,
142 LM32_FEATURE_SIGN_EXTEND
= 8,
143 LM32_FEATURE_I_CACHE
= 16,
144 LM32_FEATURE_D_CACHE
= 32,
145 LM32_FEATURE_CYCLE_COUNT
= 64,
149 LM32_FLAG_IGNORE_MSB
= 1,
152 struct CPULM32State
{
153 /* general registers */
156 /* special registers */
157 uint32_t pc
; /* program counter */
158 uint32_t ie
; /* interrupt enable */
159 uint32_t icc
; /* instruction cache control */
160 uint32_t dcc
; /* data cache control */
161 uint32_t cc
; /* cycle counter */
162 uint32_t cfg
; /* configuration */
164 /* debug registers */
165 uint32_t dc
; /* debug control */
166 uint32_t bp
[4]; /* breakpoints */
167 uint32_t wp
[4]; /* watchpoints */
169 struct CPUBreakpoint
*cpu_breakpoint
[4];
170 struct CPUWatchpoint
*cpu_watchpoint
[4];
174 /* Fields from here on are preserved across CPU reset. */
175 uint32_t eba
; /* exception base address */
176 uint32_t deba
; /* debug exception base address */
178 /* interrupt controller handle for callbacks */
179 DeviceState
*pic_state
;
180 /* JTAG UART handle for callbacks */
181 DeviceState
*juart_state
;
183 /* processor core features */
189 LM32_WP_DISABLED
= 0,
195 static inline lm32_wp_t
lm32_wp_type(uint32_t dc
, int idx
)
198 return (dc
>> (idx
+1)*2) & 0x3;
203 LM32CPU
*cpu_lm32_init(const char *cpu_model
);
204 int cpu_lm32_exec(CPULM32State
*s
);
205 /* you can call this signal handler from your SIGBUS and SIGSEGV
206 signal handlers to inform the virtual CPU of exceptions. non zero
207 is returned if the signal was handled by the virtual CPU. */
208 int cpu_lm32_signal_handler(int host_signum
, void *pinfo
,
210 void lm32_cpu_list(FILE *f
, fprintf_function cpu_fprintf
);
211 void lm32_translate_init(void);
212 void cpu_lm32_set_phys_msb_ignore(CPULM32State
*env
, int value
);
213 void QEMU_NORETURN
raise_exception(CPULM32State
*env
, int index
);
214 void lm32_debug_excp_handler(CPUState
*cs
);
215 void lm32_breakpoint_insert(CPULM32State
*env
, int index
, target_ulong address
);
216 void lm32_breakpoint_remove(CPULM32State
*env
, int index
);
217 void lm32_watchpoint_insert(CPULM32State
*env
, int index
, target_ulong address
,
219 void lm32_watchpoint_remove(CPULM32State
*env
, int index
);
220 bool lm32_cpu_do_semihosting(CPUState
*cs
);
222 static inline CPULM32State
*cpu_init(const char *cpu_model
)
224 LM32CPU
*cpu
= cpu_lm32_init(cpu_model
);
231 #define cpu_list lm32_cpu_list
232 #define cpu_exec cpu_lm32_exec
233 #define cpu_gen_code cpu_lm32_gen_code
234 #define cpu_signal_handler cpu_lm32_signal_handler
236 int lm32_cpu_handle_mmu_fault(CPUState
*cpu
, vaddr address
, int rw
,
239 #include "exec/cpu-all.h"
241 static inline void cpu_get_tb_cpu_state(CPULM32State
*env
, target_ulong
*pc
,
242 target_ulong
*cs_base
, int *flags
)
249 #include "exec/exec-all.h"