2 * OpenRISC virtual CPU header.
4 * Copyright (c) 2011-2012 Jia Liu <proljc@gmail.com>
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/>.
20 #ifndef CPU_OPENRISC_H
21 #define CPU_OPENRISC_H
23 #define TARGET_LONG_BITS 32
24 #define ELF_MACHINE EM_OPENRISC
26 #define CPUArchState struct CPUOpenRISCState
28 /* cpu_openrisc_map_address_* in CPUOpenRISCTLBContext need this decl. */
32 #include "qemu-common.h"
34 #include "softfloat.h"
38 #define TYPE_OPENRISC_CPU "or32-cpu"
40 #define OPENRISC_CPU_CLASS(klass) \
41 OBJECT_CLASS_CHECK(OpenRISCCPUClass, (klass), TYPE_OPENRISC_CPU)
42 #define OPENRISC_CPU(obj) \
43 OBJECT_CHECK(OpenRISCCPU, (obj), TYPE_OPENRISC_CPU)
44 #define OPENRISC_CPU_GET_CLASS(obj) \
45 OBJECT_GET_CLASS(OpenRISCCPUClass, (obj), TYPE_OPENRISC_CPU)
49 * @parent_reset: The parent class' reset handler.
51 * A OpenRISC CPU model.
53 typedef struct OpenRISCCPUClass
{
55 CPUClass parent_class
;
58 void (*parent_reset
)(CPUState
*cpu
);
61 #define NB_MMU_MODES 3
65 MMU_SUPERVISOR_IDX
= 1,
69 #define TARGET_PAGE_BITS 13
71 #define TARGET_PHYS_ADDR_SPACE_BITS 32
72 #define TARGET_VIRT_ADDR_SPACE_BITS 32
74 #define SET_FP_CAUSE(reg, v) do {\
75 (reg) = ((reg) & ~(0x3f << 12)) | \
78 #define GET_FP_ENABLE(reg) (((reg) >> 7) & 0x1f)
79 #define UPDATE_FP_FLAGS(reg, v) do {\
80 (reg) |= ((v & 0x1f) << 2);\
83 /* Version Register */
84 #define SPR_VR 0xFFFF003F
86 /* Internal flags, delay slot flag */
94 R0
= 0, R1
, R2
, R3
, R4
, R5
, R6
, R7
, R8
, R9
, R10
,
95 R11
, R12
, R13
, R14
, R15
, R16
, R17
, R18
, R19
, R20
,
96 R21
, R22
, R23
, R24
, R25
, R26
, R27
, R28
, R29
, R30
,
100 /* Register aliases */
110 /* Unit presece register */
123 UPR_CUP
= (255 << 24),
126 /* CPU configure register */
128 CPUCFGR_NSGF
= (15 << 0),
129 CPUCFGR_CGF
= (1 << 4),
130 CPUCFGR_OB32S
= (1 << 5),
131 CPUCFGR_OB64S
= (1 << 6),
132 CPUCFGR_OF32S
= (1 << 7),
133 CPUCFGR_OF64S
= (1 << 8),
134 CPUCFGR_OV64S
= (1 << 9),
137 /* DMMU configure register */
139 DMMUCFGR_NTW
= (3 << 0),
140 DMMUCFGR_NTS
= (7 << 2),
141 DMMUCFGR_NAE
= (7 << 5),
142 DMMUCFGR_CRI
= (1 << 8),
143 DMMUCFGR_PRI
= (1 << 9),
144 DMMUCFGR_TEIRI
= (1 << 10),
145 DMMUCFGR_HTR
= (1 << 11),
148 /* IMMU configure register */
150 IMMUCFGR_NTW
= (3 << 0),
151 IMMUCFGR_NTS
= (7 << 2),
152 IMMUCFGR_NAE
= (7 << 5),
153 IMMUCFGR_CRI
= (1 << 8),
154 IMMUCFGR_PRI
= (1 << 9),
155 IMMUCFGR_TEIRI
= (1 << 10),
156 IMMUCFGR_HTR
= (1 << 11),
159 /* Float point control status register */
163 FPCSR_OVF
= (1 << 3),
164 FPCSR_UNF
= (1 << 4),
165 FPCSR_SNF
= (1 << 5),
166 FPCSR_QNF
= (1 << 6),
168 FPCSR_IXF
= (1 << 8),
169 FPCSR_IVF
= (1 << 9),
170 FPCSR_INF
= (1 << 10),
171 FPCSR_DZF
= (1 << 11),
174 /* Exceptions indices */
193 /* Supervisor register */
211 SR_SUMRA
= (1 << 16),
215 /* OpenRISC Hardware Capabilities */
217 OPENRISC_FEATURE_NSGF
= (15 << 0),
218 OPENRISC_FEATURE_CGF
= (1 << 4),
219 OPENRISC_FEATURE_OB32S
= (1 << 5),
220 OPENRISC_FEATURE_OB64S
= (1 << 6),
221 OPENRISC_FEATURE_OF32S
= (1 << 7),
222 OPENRISC_FEATURE_OF64S
= (1 << 8),
223 OPENRISC_FEATURE_OV64S
= (1 << 9),
226 /* Tick Timer Mode Register */
228 TTMR_TP
= (0xfffffff),
236 TIMER_NONE
= (0 << 30),
237 TIMER_INTR
= (1 << 30),
238 TIMER_SHOT
= (2 << 30),
239 TIMER_CONT
= (3 << 30),
246 DTLB_MASK
= (DTLB_SIZE
-1),
249 ITLB_MASK
= (ITLB_SIZE
-1),
263 /* check if tlb available */
271 typedef struct OpenRISCTLBEntry
{
276 #ifndef CONFIG_USER_ONLY
277 typedef struct CPUOpenRISCTLBContext
{
278 OpenRISCTLBEntry itlb
[ITLB_WAYS
][ITLB_SIZE
];
279 OpenRISCTLBEntry dtlb
[DTLB_WAYS
][DTLB_SIZE
];
281 int (*cpu_openrisc_map_address_code
)(struct OpenRISCCPU
*cpu
,
282 target_phys_addr_t
*physical
,
284 target_ulong address
, int rw
);
285 int (*cpu_openrisc_map_address_data
)(struct OpenRISCCPU
*cpu
,
286 target_phys_addr_t
*physical
,
288 target_ulong address
, int rw
);
289 } CPUOpenRISCTLBContext
;
292 typedef struct CPUOpenRISCState
{
293 target_ulong gpr
[32]; /* General registers */
294 target_ulong pc
; /* Program counter */
295 target_ulong npc
; /* Next PC */
296 target_ulong ppc
; /* Prev PC */
297 target_ulong jmp_pc
; /* Jump PC */
299 target_ulong machi
; /* Multiply register MACHI */
300 target_ulong maclo
; /* Multiply register MACLO */
302 target_ulong fpmaddhi
; /* Multiply and add float register FPMADDHI */
303 target_ulong fpmaddlo
; /* Multiply and add float register FPMADDLO */
305 target_ulong epcr
; /* Exception PC register */
306 target_ulong eear
; /* Exception EA register */
308 uint32_t sr
; /* Supervisor register */
309 uint32_t vr
; /* Version register */
310 uint32_t upr
; /* Unit presence register */
311 uint32_t cpucfgr
; /* CPU configure register */
312 uint32_t dmmucfgr
; /* DMMU configure register */
313 uint32_t immucfgr
; /* IMMU configure register */
314 uint32_t esr
; /* Exception supervisor register */
315 uint32_t fpcsr
; /* Float register */
316 float_status fp_status
;
318 uint32_t flags
; /* cpu_flags, we only use it for exception
320 uint32_t btaken
; /* the SR_F bit */
324 #ifndef CONFIG_USER_ONLY
325 CPUOpenRISCTLBContext
* tlb
;
327 struct QEMUTimer
*timer
;
328 uint32_t ttmr
; /* Timer tick mode register */
329 uint32_t ttcr
; /* Timer tick count register */
331 uint32_t picmr
; /* Interrupt mask register */
332 uint32_t picsr
; /* Interrupt contrl register*/
334 void *irq
[32]; /* Interrupt irq input */
339 * @env: #CPUOpenRISCState
343 typedef struct OpenRISCCPU
{
348 CPUOpenRISCState env
;
350 uint32_t feature
; /* CPU Capabilities */
353 static inline OpenRISCCPU
*openrisc_env_get_cpu(CPUOpenRISCState
*env
)
355 return OPENRISC_CPU(container_of(env
, OpenRISCCPU
, env
));
358 #define ENV_GET_CPU(e) CPU(openrisc_env_get_cpu(e))
360 OpenRISCCPU
*cpu_openrisc_init(const char *cpu_model
);
361 void openrisc_cpu_realize(Object
*obj
, Error
**errp
);
363 void cpu_openrisc_list(FILE *f
, fprintf_function cpu_fprintf
);
364 int cpu_openrisc_exec(CPUOpenRISCState
*s
);
365 void do_interrupt(CPUOpenRISCState
*env
);
366 void openrisc_translate_init(void);
367 int cpu_openrisc_handle_mmu_fault(CPUOpenRISCState
*env
,
368 target_ulong address
,
369 int rw
, int mmu_idx
);
370 int cpu_openrisc_signal_handler(int host_signum
, void *pinfo
, void *puc
);
372 #define cpu_list cpu_openrisc_list
373 #define cpu_exec cpu_openrisc_exec
374 #define cpu_gen_code cpu_openrisc_gen_code
375 #define cpu_handle_mmu_fault cpu_openrisc_handle_mmu_fault
376 #define cpu_signal_handler cpu_openrisc_signal_handler
378 #ifndef CONFIG_USER_ONLY
379 /* hw/openrisc_pic.c */
380 void cpu_openrisc_pic_init(OpenRISCCPU
*cpu
);
382 /* hw/openrisc_timer.c */
383 void cpu_openrisc_clock_init(OpenRISCCPU
*cpu
);
384 void cpu_openrisc_count_update(OpenRISCCPU
*cpu
);
385 void cpu_openrisc_count_start(OpenRISCCPU
*cpu
);
386 void cpu_openrisc_count_stop(OpenRISCCPU
*cpu
);
388 void cpu_openrisc_mmu_init(OpenRISCCPU
*cpu
);
389 int cpu_openrisc_get_phys_nommu(OpenRISCCPU
*cpu
,
390 target_phys_addr_t
*physical
,
391 int *prot
, target_ulong address
, int rw
);
392 int cpu_openrisc_get_phys_code(OpenRISCCPU
*cpu
,
393 target_phys_addr_t
*physical
,
394 int *prot
, target_ulong address
, int rw
);
395 int cpu_openrisc_get_phys_data(OpenRISCCPU
*cpu
,
396 target_phys_addr_t
*physical
,
397 int *prot
, target_ulong address
, int rw
);
400 static inline CPUOpenRISCState
*cpu_init(const char *cpu_model
)
402 OpenRISCCPU
*cpu
= cpu_openrisc_init(cpu_model
);
409 #if defined(CONFIG_USER_ONLY)
410 static inline void cpu_clone_regs(CPUOpenRISCState
*env
, target_ulong newsp
)
421 static inline void cpu_get_tb_cpu_state(CPUOpenRISCState
*env
,
423 target_ulong
*cs_base
, int *flags
)
427 /* D_FLAG -- branch instruction exception */
428 *flags
= (env
->flags
& D_FLAG
);
431 static inline int cpu_mmu_index(CPUOpenRISCState
*env
)
433 if (!(env
->sr
& SR_IME
)) {
434 return MMU_NOMMU_IDX
;
436 return (env
->sr
& SR_SM
) == 0 ? MMU_USER_IDX
: MMU_SUPERVISOR_IDX
;
439 #define CPU_INTERRUPT_TIMER CPU_INTERRUPT_TGT_INT_0
440 static inline bool cpu_has_work(CPUOpenRISCState
*env
)
442 return env
->interrupt_request
& (CPU_INTERRUPT_HARD
|
443 CPU_INTERRUPT_TIMER
);
446 #include "exec-all.h"
448 static inline target_ulong
cpu_get_pc(CPUOpenRISCState
*env
)
453 static inline void cpu_pc_from_tb(CPUOpenRISCState
*env
, TranslationBlock
*tb
)
458 #endif /* CPU_OPENRISC_H */