usb-bot: hotplug support
[qemu/kevin.git] / target-unicore32 / cpu.h
blobf3e877bbc0b4145aa0ec4bf7c356b44460c34107
1 /*
2 * UniCore32 virtual CPU header
4 * Copyright (C) 2010-2012 Guan Xuetao
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation, or (at your option) any
9 * later version. See the COPYING file in the top-level directory.
11 #ifndef QEMU_UNICORE32_CPU_H
12 #define QEMU_UNICORE32_CPU_H
14 #define TARGET_LONG_BITS 32
15 #define TARGET_PAGE_BITS 12
17 #define TARGET_PHYS_ADDR_SPACE_BITS 32
18 #define TARGET_VIRT_ADDR_SPACE_BITS 32
20 #define CPUArchState struct CPUUniCore32State
22 #include "qemu-common.h"
23 #include "cpu-qom.h"
24 #include "exec/cpu-defs.h"
25 #include "fpu/softfloat.h"
27 #define NB_MMU_MODES 2
29 typedef struct CPUUniCore32State {
30 /* Regs for current mode. */
31 uint32_t regs[32];
32 /* Frequently accessed ASR bits are stored separately for efficiently.
33 This contains all the other bits. Use asr_{read,write} to access
34 the whole ASR. */
35 uint32_t uncached_asr;
36 uint32_t bsr;
38 /* Banked registers. */
39 uint32_t banked_bsr[6];
40 uint32_t banked_r29[6];
41 uint32_t banked_r30[6];
43 /* asr flag cache for faster execution */
44 uint32_t CF; /* 0 or 1 */
45 uint32_t VF; /* V is the bit 31. All other bits are undefined */
46 uint32_t NF; /* N is bit 31. All other bits are undefined. */
47 uint32_t ZF; /* Z set if zero. */
49 /* System control coprocessor (cp0) */
50 struct {
51 uint32_t c0_cpuid;
52 uint32_t c0_cachetype;
53 uint32_t c1_sys; /* System control register. */
54 uint32_t c2_base; /* MMU translation table base. */
55 uint32_t c3_faultstatus; /* Fault status registers. */
56 uint32_t c4_faultaddr; /* Fault address registers. */
57 uint32_t c5_cacheop; /* Cache operation registers. */
58 uint32_t c6_tlbop; /* TLB operation registers. */
59 } cp0;
61 /* UniCore-F64 coprocessor state. */
62 struct {
63 float64 regs[16];
64 uint32_t xregs[32];
65 float_status fp_status;
66 } ucf64;
68 CPU_COMMON
70 /* Internal CPU feature flags. */
71 uint32_t features;
73 } CPUUniCore32State;
75 /**
76 * UniCore32CPU:
77 * @env: #CPUUniCore32State
79 * A UniCore32 CPU.
81 struct UniCore32CPU {
82 /*< private >*/
83 CPUState parent_obj;
84 /*< public >*/
86 CPUUniCore32State env;
89 static inline UniCore32CPU *uc32_env_get_cpu(CPUUniCore32State *env)
91 return container_of(env, UniCore32CPU, env);
94 #define ENV_GET_CPU(e) CPU(uc32_env_get_cpu(e))
96 #define ENV_OFFSET offsetof(UniCore32CPU, env)
98 void uc32_cpu_do_interrupt(CPUState *cpu);
99 bool uc32_cpu_exec_interrupt(CPUState *cpu, int int_req);
100 void uc32_cpu_dump_state(CPUState *cpu, FILE *f,
101 fprintf_function cpu_fprintf, int flags);
102 hwaddr uc32_cpu_get_phys_page_debug(CPUState *cpu, vaddr addr);
104 #define ASR_M (0x1f)
105 #define ASR_MODE_USER (0x10)
106 #define ASR_MODE_INTR (0x12)
107 #define ASR_MODE_PRIV (0x13)
108 #define ASR_MODE_TRAP (0x17)
109 #define ASR_MODE_EXTN (0x1b)
110 #define ASR_MODE_SUSR (0x1f)
111 #define ASR_I (1 << 7)
112 #define ASR_V (1 << 28)
113 #define ASR_C (1 << 29)
114 #define ASR_Z (1 << 30)
115 #define ASR_N (1 << 31)
116 #define ASR_NZCV (ASR_N | ASR_Z | ASR_C | ASR_V)
117 #define ASR_RESERVED (~(ASR_M | ASR_I | ASR_NZCV))
119 #define UC32_EXCP_PRIV (1)
120 #define UC32_EXCP_ITRAP (2)
121 #define UC32_EXCP_DTRAP (3)
122 #define UC32_EXCP_INTR (4)
124 /* Return the current ASR value. */
125 target_ulong cpu_asr_read(CPUUniCore32State *env1);
126 /* Set the ASR. Note that some bits of mask must be all-set or all-clear. */
127 void cpu_asr_write(CPUUniCore32State *env1, target_ulong val, target_ulong mask);
129 /* UniCore-F64 system registers. */
130 #define UC32_UCF64_FPSCR (31)
131 #define UCF64_FPSCR_MASK (0x27ffffff)
132 #define UCF64_FPSCR_RND_MASK (0x7)
133 #define UCF64_FPSCR_RND(r) (((r) >> 0) & UCF64_FPSCR_RND_MASK)
134 #define UCF64_FPSCR_TRAPEN_MASK (0x7f)
135 #define UCF64_FPSCR_TRAPEN(r) (((r) >> 10) & UCF64_FPSCR_TRAPEN_MASK)
136 #define UCF64_FPSCR_FLAG_MASK (0x3ff)
137 #define UCF64_FPSCR_FLAG(r) (((r) >> 17) & UCF64_FPSCR_FLAG_MASK)
138 #define UCF64_FPSCR_FLAG_ZERO (1 << 17)
139 #define UCF64_FPSCR_FLAG_INFINITY (1 << 18)
140 #define UCF64_FPSCR_FLAG_INVALID (1 << 19)
141 #define UCF64_FPSCR_FLAG_UNDERFLOW (1 << 20)
142 #define UCF64_FPSCR_FLAG_OVERFLOW (1 << 21)
143 #define UCF64_FPSCR_FLAG_INEXACT (1 << 22)
144 #define UCF64_FPSCR_FLAG_HUGEINT (1 << 23)
145 #define UCF64_FPSCR_FLAG_DENORMAL (1 << 24)
146 #define UCF64_FPSCR_FLAG_UNIMP (1 << 25)
147 #define UCF64_FPSCR_FLAG_DIVZERO (1 << 26)
149 #define UC32_HWCAP_CMOV 4 /* 1 << 2 */
150 #define UC32_HWCAP_UCF64 8 /* 1 << 3 */
152 #define cpu_exec uc32_cpu_exec
153 #define cpu_signal_handler uc32_cpu_signal_handler
155 int uc32_cpu_signal_handler(int host_signum, void *pinfo, void *puc);
157 /* MMU modes definitions */
158 #define MMU_MODE0_SUFFIX _kernel
159 #define MMU_MODE1_SUFFIX _user
160 #define MMU_USER_IDX 1
161 static inline int cpu_mmu_index(CPUUniCore32State *env, bool ifetch)
163 return (env->uncached_asr & ASR_M) == ASR_MODE_USER ? 1 : 0;
166 #include "exec/cpu-all.h"
168 int uc32_cpu_exec(CPUState *s);
170 UniCore32CPU *uc32_cpu_init(const char *cpu_model);
172 #define cpu_init(cpu_model) CPU(uc32_cpu_init(cpu_model))
174 static inline void cpu_get_tb_cpu_state(CPUUniCore32State *env, target_ulong *pc,
175 target_ulong *cs_base, uint32_t *flags)
177 *pc = env->regs[31];
178 *cs_base = 0;
179 *flags = 0;
180 if ((env->uncached_asr & ASR_M) != ASR_MODE_USER) {
181 *flags |= (1 << 6);
185 int uc32_cpu_handle_mmu_fault(CPUState *cpu, vaddr address, int rw,
186 int mmu_idx);
187 void uc32_translate_init(void);
188 void switch_mode(CPUUniCore32State *, int);
190 #endif /* QEMU_UNICORE32_CPU_H */