icount: Take iothread lock when running QEMU timers
[qemu/ar7.git] / target / openrisc / cpu.h
blobb9584f10d452cd77c369c58a1287c8b7e43d0be6
1 /*
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.1 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 OPENRISC_CPU_H
21 #define OPENRISC_CPU_H
23 #include "exec/cpu-defs.h"
24 #include "fpu/softfloat-types.h"
25 #include "hw/core/cpu.h"
26 #include "qom/object.h"
28 #define TYPE_OPENRISC_CPU "or1k-cpu"
30 OBJECT_DECLARE_CPU_TYPE(OpenRISCCPU, OpenRISCCPUClass, OPENRISC_CPU)
32 /**
33 * OpenRISCCPUClass:
34 * @parent_realize: The parent class' realize handler.
35 * @parent_reset: The parent class' reset handler.
37 * A OpenRISC CPU model.
39 struct OpenRISCCPUClass {
40 /*< private >*/
41 CPUClass parent_class;
42 /*< public >*/
44 DeviceRealize parent_realize;
45 DeviceReset parent_reset;
48 #define TARGET_INSN_START_EXTRA_WORDS 1
50 enum {
51 MMU_NOMMU_IDX = 0,
52 MMU_SUPERVISOR_IDX = 1,
53 MMU_USER_IDX = 2,
56 #define SET_FP_CAUSE(reg, v) do {\
57 (reg) = ((reg) & ~(0x3f << 12)) | \
58 ((v & 0x3f) << 12);\
59 } while (0)
60 #define GET_FP_ENABLE(reg) (((reg) >> 7) & 0x1f)
61 #define UPDATE_FP_FLAGS(reg, v) do {\
62 (reg) |= ((v & 0x1f) << 2);\
63 } while (0)
65 /* Interrupt */
66 #define NR_IRQS 32
68 /* Unit presece register */
69 enum {
70 UPR_UP = (1 << 0),
71 UPR_DCP = (1 << 1),
72 UPR_ICP = (1 << 2),
73 UPR_DMP = (1 << 3),
74 UPR_IMP = (1 << 4),
75 UPR_MP = (1 << 5),
76 UPR_DUP = (1 << 6),
77 UPR_PCUR = (1 << 7),
78 UPR_PMP = (1 << 8),
79 UPR_PICP = (1 << 9),
80 UPR_TTP = (1 << 10),
81 UPR_CUP = (255 << 24),
84 /* CPU configure register */
85 enum {
86 CPUCFGR_NSGF = (15 << 0),
87 CPUCFGR_CGF = (1 << 4),
88 CPUCFGR_OB32S = (1 << 5),
89 CPUCFGR_OB64S = (1 << 6),
90 CPUCFGR_OF32S = (1 << 7),
91 CPUCFGR_OF64S = (1 << 8),
92 CPUCFGR_OV64S = (1 << 9),
93 CPUCFGR_ND = (1 << 10),
94 CPUCFGR_AVRP = (1 << 11),
95 CPUCFGR_EVBARP = (1 << 12),
96 CPUCFGR_ISRP = (1 << 13),
97 CPUCFGR_AECSRP = (1 << 14),
98 CPUCFGR_OF64A32S = (1 << 15),
101 /* DMMU configure register */
102 enum {
103 DMMUCFGR_NTW = (3 << 0),
104 DMMUCFGR_NTS = (7 << 2),
105 DMMUCFGR_NAE = (7 << 5),
106 DMMUCFGR_CRI = (1 << 8),
107 DMMUCFGR_PRI = (1 << 9),
108 DMMUCFGR_TEIRI = (1 << 10),
109 DMMUCFGR_HTR = (1 << 11),
112 /* IMMU configure register */
113 enum {
114 IMMUCFGR_NTW = (3 << 0),
115 IMMUCFGR_NTS = (7 << 2),
116 IMMUCFGR_NAE = (7 << 5),
117 IMMUCFGR_CRI = (1 << 8),
118 IMMUCFGR_PRI = (1 << 9),
119 IMMUCFGR_TEIRI = (1 << 10),
120 IMMUCFGR_HTR = (1 << 11),
123 /* Power management register */
124 enum {
125 PMR_SDF = (15 << 0),
126 PMR_DME = (1 << 4),
127 PMR_SME = (1 << 5),
128 PMR_DCGE = (1 << 6),
129 PMR_SUME = (1 << 7),
132 /* Float point control status register */
133 enum {
134 FPCSR_FPEE = 1,
135 FPCSR_RM = (3 << 1),
136 FPCSR_OVF = (1 << 3),
137 FPCSR_UNF = (1 << 4),
138 FPCSR_SNF = (1 << 5),
139 FPCSR_QNF = (1 << 6),
140 FPCSR_ZF = (1 << 7),
141 FPCSR_IXF = (1 << 8),
142 FPCSR_IVF = (1 << 9),
143 FPCSR_INF = (1 << 10),
144 FPCSR_DZF = (1 << 11),
147 /* Exceptions indices */
148 enum {
149 EXCP_RESET = 0x1,
150 EXCP_BUSERR = 0x2,
151 EXCP_DPF = 0x3,
152 EXCP_IPF = 0x4,
153 EXCP_TICK = 0x5,
154 EXCP_ALIGN = 0x6,
155 EXCP_ILLEGAL = 0x7,
156 EXCP_INT = 0x8,
157 EXCP_DTLBMISS = 0x9,
158 EXCP_ITLBMISS = 0xa,
159 EXCP_RANGE = 0xb,
160 EXCP_SYSCALL = 0xc,
161 EXCP_FPE = 0xd,
162 EXCP_TRAP = 0xe,
163 EXCP_NR,
166 /* Supervisor register */
167 enum {
168 SR_SM = (1 << 0),
169 SR_TEE = (1 << 1),
170 SR_IEE = (1 << 2),
171 SR_DCE = (1 << 3),
172 SR_ICE = (1 << 4),
173 SR_DME = (1 << 5),
174 SR_IME = (1 << 6),
175 SR_LEE = (1 << 7),
176 SR_CE = (1 << 8),
177 SR_F = (1 << 9),
178 SR_CY = (1 << 10),
179 SR_OV = (1 << 11),
180 SR_OVE = (1 << 12),
181 SR_DSX = (1 << 13),
182 SR_EPH = (1 << 14),
183 SR_FO = (1 << 15),
184 SR_SUMRA = (1 << 16),
185 SR_SCE = (1 << 17),
188 /* Tick Timer Mode Register */
189 enum {
190 TTMR_TP = (0xfffffff),
191 TTMR_IP = (1 << 28),
192 TTMR_IE = (1 << 29),
193 TTMR_M = (3 << 30),
196 /* Timer Mode */
197 enum {
198 TIMER_NONE = (0 << 30),
199 TIMER_INTR = (1 << 30),
200 TIMER_SHOT = (2 << 30),
201 TIMER_CONT = (3 << 30),
204 /* TLB size */
205 enum {
206 TLB_SIZE = 128,
207 TLB_MASK = TLB_SIZE - 1,
210 /* TLB prot */
211 enum {
212 URE = (1 << 6),
213 UWE = (1 << 7),
214 SRE = (1 << 8),
215 SWE = (1 << 9),
217 SXE = (1 << 6),
218 UXE = (1 << 7),
221 typedef struct OpenRISCTLBEntry {
222 uint32_t mr;
223 uint32_t tr;
224 } OpenRISCTLBEntry;
226 #ifndef CONFIG_USER_ONLY
227 typedef struct CPUOpenRISCTLBContext {
228 OpenRISCTLBEntry itlb[TLB_SIZE];
229 OpenRISCTLBEntry dtlb[TLB_SIZE];
231 int (*cpu_openrisc_map_address_code)(OpenRISCCPU *cpu,
232 hwaddr *physical,
233 int *prot,
234 target_ulong address, int rw);
235 int (*cpu_openrisc_map_address_data)(OpenRISCCPU *cpu,
236 hwaddr *physical,
237 int *prot,
238 target_ulong address, int rw);
239 } CPUOpenRISCTLBContext;
240 #endif
242 typedef struct CPUArchState {
243 target_ulong shadow_gpr[16][32]; /* Shadow registers */
245 target_ulong pc; /* Program counter */
246 target_ulong ppc; /* Prev PC */
247 target_ulong jmp_pc; /* Jump PC */
249 uint64_t mac; /* Multiply registers MACHI:MACLO */
251 target_ulong epcr; /* Exception PC register */
252 target_ulong eear; /* Exception EA register */
254 target_ulong sr_f; /* the SR_F bit, values 0, 1. */
255 target_ulong sr_cy; /* the SR_CY bit, values 0, 1. */
256 target_long sr_ov; /* the SR_OV bit (in the sign bit only) */
257 uint32_t sr; /* Supervisor register, without SR_{F,CY,OV} */
258 uint32_t esr; /* Exception supervisor register */
259 uint32_t evbar; /* Exception vector base address register */
260 uint32_t pmr; /* Power Management Register */
261 uint32_t fpcsr; /* Float register */
262 float_status fp_status;
264 target_ulong lock_addr;
265 target_ulong lock_value;
267 uint32_t dflag; /* In delay slot (boolean) */
269 #ifndef CONFIG_USER_ONLY
270 CPUOpenRISCTLBContext tlb;
271 #endif
273 /* Fields up to this point are cleared by a CPU reset */
274 struct {} end_reset_fields;
276 /* Fields from here on are preserved across CPU reset. */
277 uint32_t vr; /* Version register */
278 uint32_t vr2; /* Version register 2 */
279 uint32_t avr; /* Architecture version register */
280 uint32_t upr; /* Unit presence register */
281 uint32_t cpucfgr; /* CPU configure register */
282 uint32_t dmmucfgr; /* DMMU configure register */
283 uint32_t immucfgr; /* IMMU configure register */
285 #ifndef CONFIG_USER_ONLY
286 QEMUTimer *timer;
287 uint32_t ttmr; /* Timer tick mode register */
288 int is_counting;
290 uint32_t picmr; /* Interrupt mask register */
291 uint32_t picsr; /* Interrupt contrl register*/
292 #endif
293 } CPUOpenRISCState;
296 * OpenRISCCPU:
297 * @env: #CPUOpenRISCState
299 * A OpenRISC CPU.
301 struct ArchCPU {
302 /*< private >*/
303 CPUState parent_obj;
304 /*< public >*/
306 CPUNegativeOffsetState neg;
307 CPUOpenRISCState env;
311 void cpu_openrisc_list(void);
312 void openrisc_cpu_dump_state(CPUState *cpu, FILE *f, int flags);
313 hwaddr openrisc_cpu_get_phys_page_debug(CPUState *cpu, vaddr addr);
314 int openrisc_cpu_gdb_read_register(CPUState *cpu, GByteArray *buf, int reg);
315 int openrisc_cpu_gdb_write_register(CPUState *cpu, uint8_t *buf, int reg);
316 void openrisc_translate_init(void);
317 int print_insn_or1k(bfd_vma addr, disassemble_info *info);
319 #define cpu_list cpu_openrisc_list
321 #ifndef CONFIG_USER_ONLY
322 bool openrisc_cpu_tlb_fill(CPUState *cs, vaddr address, int size,
323 MMUAccessType access_type, int mmu_idx,
324 bool probe, uintptr_t retaddr);
326 extern const VMStateDescription vmstate_openrisc_cpu;
328 void openrisc_cpu_do_interrupt(CPUState *cpu);
329 bool openrisc_cpu_exec_interrupt(CPUState *cpu, int int_req);
331 /* hw/openrisc_pic.c */
332 void cpu_openrisc_pic_init(OpenRISCCPU *cpu);
334 /* hw/openrisc_timer.c */
335 void cpu_openrisc_clock_init(OpenRISCCPU *cpu);
336 uint32_t cpu_openrisc_count_get(OpenRISCCPU *cpu);
337 void cpu_openrisc_count_set(OpenRISCCPU *cpu, uint32_t val);
338 void cpu_openrisc_count_update(OpenRISCCPU *cpu);
339 void cpu_openrisc_timer_update(OpenRISCCPU *cpu);
340 void cpu_openrisc_count_start(OpenRISCCPU *cpu);
341 void cpu_openrisc_count_stop(OpenRISCCPU *cpu);
342 #endif
344 #define OPENRISC_CPU_TYPE_SUFFIX "-" TYPE_OPENRISC_CPU
345 #define OPENRISC_CPU_TYPE_NAME(model) model OPENRISC_CPU_TYPE_SUFFIX
346 #define CPU_RESOLVING_TYPE TYPE_OPENRISC_CPU
348 #include "exec/cpu-all.h"
350 #define TB_FLAGS_SM SR_SM
351 #define TB_FLAGS_DME SR_DME
352 #define TB_FLAGS_IME SR_IME
353 #define TB_FLAGS_OVE SR_OVE
354 #define TB_FLAGS_DFLAG 2 /* reuse SR_TEE */
355 #define TB_FLAGS_R0_0 4 /* reuse SR_IEE */
357 static inline uint32_t cpu_get_gpr(const CPUOpenRISCState *env, int i)
359 return env->shadow_gpr[0][i];
362 static inline void cpu_set_gpr(CPUOpenRISCState *env, int i, uint32_t val)
364 env->shadow_gpr[0][i] = val;
367 static inline void cpu_get_tb_cpu_state(CPUOpenRISCState *env,
368 target_ulong *pc,
369 target_ulong *cs_base, uint32_t *flags)
371 *pc = env->pc;
372 *cs_base = 0;
373 *flags = (env->dflag ? TB_FLAGS_DFLAG : 0)
374 | (cpu_get_gpr(env, 0) ? 0 : TB_FLAGS_R0_0)
375 | (env->sr & (SR_SM | SR_DME | SR_IME | SR_OVE));
378 static inline int cpu_mmu_index(CPUOpenRISCState *env, bool ifetch)
380 int ret = MMU_NOMMU_IDX; /* mmu is disabled */
382 if (env->sr & (ifetch ? SR_IME : SR_DME)) {
383 /* The mmu is enabled; test supervisor state. */
384 ret = env->sr & SR_SM ? MMU_SUPERVISOR_IDX : MMU_USER_IDX;
387 return ret;
390 static inline uint32_t cpu_get_sr(const CPUOpenRISCState *env)
392 return (env->sr
393 + env->sr_f * SR_F
394 + env->sr_cy * SR_CY
395 + (env->sr_ov < 0) * SR_OV);
398 static inline void cpu_set_sr(CPUOpenRISCState *env, uint32_t val)
400 env->sr_f = (val & SR_F) != 0;
401 env->sr_cy = (val & SR_CY) != 0;
402 env->sr_ov = (val & SR_OV ? -1 : 0);
403 env->sr = (val & ~(SR_F | SR_CY | SR_OV)) | SR_FO;
406 void cpu_set_fpcsr(CPUOpenRISCState *env, uint32_t val);
408 #define CPU_INTERRUPT_TIMER CPU_INTERRUPT_TGT_INT_0
410 #endif /* OPENRISC_CPU_H */