2 * CRIS virtual CPU header
4 * Copyright (c) 2007 AXIS Communications AB
5 * Written by Edgar E. Iglesias
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version.
12 * This library 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 GNU
15 * General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 #define TARGET_LONG_BITS 32
28 #include "softfloat.h"
30 #define TARGET_HAS_ICE 1
32 #define ELF_MACHINE EM_CRIS
34 #define EXCP_MMU_EXEC 0
35 #define EXCP_MMU_READ 1
36 #define EXCP_MMU_WRITE 2
37 #define EXCP_MMU_FLUSH 3
38 #define EXCP_MMU_MISS 4
39 #define EXCP_BREAK 16 /* trap. */
54 #define ALU_FLAGS 0x1F
56 /* Condition codes. */
74 /* Internal flags for the implementation. */
77 #define NB_MMU_MODES 2
79 typedef struct CPUCRISState
{
85 * We just store the stores to the tlbset here for later evaluation
86 * when the hw needs access to them.
88 * One for I and another for D.
96 uint32_t sregs
[256][16]; /* grrr why so many?? */
101 uint32_t flag_mask
; /* Per insn mask of affected flags. */
107 /* These are setup up by the guest code just before transfering the
108 control back to the host. */
116 /* Condition flag tracking. */
123 /* size of the operation, 1 = byte, 2 = word, 4 = dword. */
126 /* extended arithmetics. */
132 uint64_t pending_interrupts
;
133 int interrupt_request
;
150 CPUCRISState
*cpu_cris_init(void);
151 int cpu_cris_exec(CPUCRISState
*s
);
152 void cpu_cris_close(CPUCRISState
*s
);
153 void do_interrupt(CPUCRISState
*env
);
154 /* you can call this signal handler from your SIGBUS and SIGSEGV
155 signal handlers to inform the virtual CPU of exceptions. non zero
156 is returned if the signal was handled by the virtual CPU. */
157 int cpu_cris_signal_handler(int host_signum
, void *pinfo
,
159 void cpu_cris_flush_flags(CPUCRISState
*, int);
162 void do_unassigned_access(target_phys_addr_t addr
, int is_write
, int is_exec
,
166 CC_OP_DYNAMIC
, /* Use env->cc_op */
204 typedef struct cris_def_t cris_def_t
;
206 int cpu_cris_set_model(CPUCRISState
*env
, const char * name
);
208 void cris_set_irq_level(CPUCRISState
*env
, int level
, uint8_t vector
);
209 void cris_set_macsr(CPUCRISState
*env
, uint32_t val
);
210 void cris_switch_sp(CPUCRISState
*env
);
212 void do_cris_semihosting(CPUCRISState
*env
, int nr
);
215 CRIS_FEATURE_CF_ISA_MUL
,
218 static inline int cris_feature(CPUCRISState
*env
, int feature
)
220 return (env
->features
& (1u << feature
)) != 0;
223 void register_cris_insns (CPUCRISState
*env
);
225 /* CRIS uses 8k pages. */
226 #define TARGET_PAGE_BITS 13
228 #define CPUState CPUCRISState
229 #define cpu_init cpu_cris_init
230 #define cpu_exec cpu_cris_exec
231 #define cpu_gen_code cpu_cris_gen_code
232 #define cpu_signal_handler cpu_cris_signal_handler
234 /* MMU modes definitions */
235 #define MMU_MODE0_SUFFIX _kernel
236 #define MMU_MODE1_SUFFIX _user
237 #define MMU_USER_IDX 1
238 /* CRIS FIXME: I guess we want to validate supervisor mode acceses here. */
239 static inline int cpu_mmu_index (CPUState
*env
)
246 /* Register aliases. */
258 /* Support func regs. */
259 #define SFR_RW_GC_CFG 0][0
260 #define SFR_RW_MM_CFG 1][0
261 #define SFR_RW_MM_KBASE_LO 1][1
262 #define SFR_RW_MM_KBASE_HI 1][2
263 #define SFR_R_MM_CAUSE 1][3
264 #define SFR_RW_MM_TLB_SEL 1][4
265 #define SFR_RW_MM_TLB_LO 1][5
266 #define SFR_RW_MM_TLB_HI 1][6