4 * Copyright (c) 2009 Edgar E. Iglesias
5 * Copyright (c) 2009-2012 PetaLogix Qld Pty Ltd.
6 * Copyright (c) 2012 SUSE LINUX Products GmbH
7 * Copyright (c) 2009 Edgar E. Iglesias, Axis Communications AB.
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, see
21 * <http://www.gnu.org/licenses/lgpl-2.1.html>
24 #include "qemu/osdep.h"
25 #include "qapi/error.h"
27 #include "qemu-common.h"
28 #include "hw/qdev-properties.h"
29 #include "migration/vmstate.h"
30 #include "exec/exec-all.h"
31 #include "fpu/softfloat.h"
37 /* These key value are as per MBV field in PVR0 */
75 /* If no specific version gets selected, default to the following. */
76 #define DEFAULT_CPU_VERSION "10.0"
78 static void mb_cpu_set_pc(CPUState
*cs
, vaddr value
)
80 MicroBlazeCPU
*cpu
= MICROBLAZE_CPU(cs
);
82 cpu
->env
.sregs
[SR_PC
] = value
;
85 static bool mb_cpu_has_work(CPUState
*cs
)
87 return cs
->interrupt_request
& (CPU_INTERRUPT_HARD
| CPU_INTERRUPT_NMI
);
90 #ifndef CONFIG_USER_ONLY
91 static void microblaze_cpu_set_irq(void *opaque
, int irq
, int level
)
93 MicroBlazeCPU
*cpu
= opaque
;
94 CPUState
*cs
= CPU(cpu
);
95 int type
= irq
? CPU_INTERRUPT_NMI
: CPU_INTERRUPT_HARD
;
98 cpu_interrupt(cs
, type
);
100 cpu_reset_interrupt(cs
, type
);
105 /* CPUClass::reset() */
106 static void mb_cpu_reset(CPUState
*s
)
108 MicroBlazeCPU
*cpu
= MICROBLAZE_CPU(s
);
109 MicroBlazeCPUClass
*mcc
= MICROBLAZE_CPU_GET_CLASS(cpu
);
110 CPUMBState
*env
= &cpu
->env
;
112 mcc
->parent_reset(s
);
114 memset(env
, 0, offsetof(CPUMBState
, end_reset_fields
));
115 env
->res_addr
= RES_ADDR_NONE
;
117 /* Disable stack protector. */
120 env
->sregs
[SR_PC
] = cpu
->cfg
.base_vectors
;
122 #if defined(CONFIG_USER_ONLY)
123 /* start in user mode with interrupts enabled. */
124 env
->sregs
[SR_MSR
] = MSR_EE
| MSR_IE
| MSR_VM
| MSR_UM
;
126 env
->sregs
[SR_MSR
] = 0;
129 env
->mmu
.c_mmu_tlb_access
= 3;
130 env
->mmu
.c_mmu_zones
= 16;
131 env
->mmu
.c_addr_mask
= MAKE_64BIT_MASK(0, cpu
->cfg
.addr_size
);
135 static void mb_disas_set_info(CPUState
*cpu
, disassemble_info
*info
)
137 info
->mach
= bfd_arch_microblaze
;
138 info
->print_insn
= print_insn_microblaze
;
141 static void mb_cpu_realizefn(DeviceState
*dev
, Error
**errp
)
143 CPUState
*cs
= CPU(dev
);
144 MicroBlazeCPUClass
*mcc
= MICROBLAZE_CPU_GET_CLASS(dev
);
145 MicroBlazeCPU
*cpu
= MICROBLAZE_CPU(cs
);
146 CPUMBState
*env
= &cpu
->env
;
147 uint8_t version_code
= 0;
150 Error
*local_err
= NULL
;
152 cpu_exec_realizefn(cs
, &local_err
);
153 if (local_err
!= NULL
) {
154 error_propagate(errp
, local_err
);
158 if (cpu
->cfg
.addr_size
< 32 || cpu
->cfg
.addr_size
> 64) {
159 error_setg(errp
, "addr-size %d is out of range (32 - 64)",
166 env
->pvr
.regs
[0] = PVR0_USE_EXC_MASK \
167 | PVR0_USE_ICACHE_MASK \
168 | PVR0_USE_DCACHE_MASK
;
169 env
->pvr
.regs
[2] = PVR2_D_OPB_MASK \
173 | PVR2_FPU_EXC_MASK \
176 version
= cpu
->cfg
.version
? cpu
->cfg
.version
: DEFAULT_CPU_VERSION
;
177 for (i
= 0; mb_cpu_lookup
[i
].name
&& version
; i
++) {
178 if (strcmp(mb_cpu_lookup
[i
].name
, version
) == 0) {
179 version_code
= mb_cpu_lookup
[i
].version_id
;
185 qemu_log("Invalid MicroBlaze version number: %s\n", cpu
->cfg
.version
);
188 env
->pvr
.regs
[0] |= (cpu
->cfg
.stackprot
? PVR0_SPROT_MASK
: 0) |
189 (cpu
->cfg
.use_fpu
? PVR0_USE_FPU_MASK
: 0) |
190 (cpu
->cfg
.use_hw_mul
? PVR0_USE_HW_MUL_MASK
: 0) |
191 (cpu
->cfg
.use_barrel
? PVR0_USE_BARREL_MASK
: 0) |
192 (cpu
->cfg
.use_div
? PVR0_USE_DIV_MASK
: 0) |
193 (cpu
->cfg
.use_mmu
? PVR0_USE_MMU_MASK
: 0) |
194 (cpu
->cfg
.endi
? PVR0_ENDI_MASK
: 0) |
195 (version_code
<< PVR0_VERSION_SHIFT
) |
196 (cpu
->cfg
.pvr
== C_PVR_FULL
? PVR0_PVR_FULL_MASK
: 0);
198 env
->pvr
.regs
[2] |= (cpu
->cfg
.use_fpu
? PVR2_USE_FPU_MASK
: 0) |
199 (cpu
->cfg
.use_fpu
> 1 ? PVR2_USE_FPU2_MASK
: 0) |
200 (cpu
->cfg
.use_hw_mul
? PVR2_USE_HW_MUL_MASK
: 0) |
201 (cpu
->cfg
.use_hw_mul
> 1 ? PVR2_USE_MUL64_MASK
: 0) |
202 (cpu
->cfg
.use_barrel
? PVR2_USE_BARREL_MASK
: 0) |
203 (cpu
->cfg
.use_div
? PVR2_USE_DIV_MASK
: 0) |
204 (cpu
->cfg
.use_msr_instr
? PVR2_USE_MSR_INSTR
: 0) |
205 (cpu
->cfg
.use_pcmp_instr
? PVR2_USE_PCMP_INSTR
: 0);
207 env
->pvr
.regs
[5] |= cpu
->cfg
.dcache_writeback
?
208 PVR5_DCACHE_WRITEBACK_MASK
: 0;
210 env
->pvr
.regs
[10] = 0x0c000000 | /* Default to spartan 3a dsp family. */
211 (cpu
->cfg
.addr_size
- 32) << PVR10_ASIZE_SHIFT
;
212 env
->pvr
.regs
[11] = (cpu
->cfg
.use_mmu
? PVR11_USE_MMU
: 0) |
215 mcc
->parent_realize(dev
, errp
);
218 static void mb_cpu_initfn(Object
*obj
)
220 CPUState
*cs
= CPU(obj
);
221 MicroBlazeCPU
*cpu
= MICROBLAZE_CPU(obj
);
222 CPUMBState
*env
= &cpu
->env
;
226 set_float_rounding_mode(float_round_nearest_even
, &env
->fp_status
);
228 #ifndef CONFIG_USER_ONLY
229 /* Inbound IRQ and FIR lines */
230 qdev_init_gpio_in(DEVICE(cpu
), microblaze_cpu_set_irq
, 2);
234 static const VMStateDescription vmstate_mb_cpu
= {
239 static Property mb_properties
[] = {
240 DEFINE_PROP_UINT32("base-vectors", MicroBlazeCPU
, cfg
.base_vectors
, 0),
241 DEFINE_PROP_BOOL("use-stack-protection", MicroBlazeCPU
, cfg
.stackprot
,
244 * This is the C_ADDR_SIZE synth-time configuration option of the
245 * MicroBlaze cores. Supported values range between 32 and 64.
247 * When set to > 32, 32bit MicroBlaze can emit load/stores
248 * with extended addressing.
250 DEFINE_PROP_UINT8("addr-size", MicroBlazeCPU
, cfg
.addr_size
, 32),
251 /* If use-fpu > 0 - FPU is enabled
252 * If use-fpu = 2 - Floating point conversion and square root instructions
255 DEFINE_PROP_UINT8("use-fpu", MicroBlazeCPU
, cfg
.use_fpu
, 2),
256 /* If use-hw-mul > 0 - Multiplier is enabled
257 * If use-hw-mul = 2 - 64-bit multiplier is enabled
259 DEFINE_PROP_UINT8("use-hw-mul", MicroBlazeCPU
, cfg
.use_hw_mul
, 2),
260 DEFINE_PROP_BOOL("use-barrel", MicroBlazeCPU
, cfg
.use_barrel
, true),
261 DEFINE_PROP_BOOL("use-div", MicroBlazeCPU
, cfg
.use_div
, true),
262 DEFINE_PROP_BOOL("use-msr-instr", MicroBlazeCPU
, cfg
.use_msr_instr
, true),
263 DEFINE_PROP_BOOL("use-pcmp-instr", MicroBlazeCPU
, cfg
.use_pcmp_instr
, true),
264 DEFINE_PROP_BOOL("use-mmu", MicroBlazeCPU
, cfg
.use_mmu
, true),
265 DEFINE_PROP_BOOL("dcache-writeback", MicroBlazeCPU
, cfg
.dcache_writeback
,
267 DEFINE_PROP_BOOL("endianness", MicroBlazeCPU
, cfg
.endi
, false),
268 DEFINE_PROP_STRING("version", MicroBlazeCPU
, cfg
.version
),
269 DEFINE_PROP_UINT8("pvr", MicroBlazeCPU
, cfg
.pvr
, C_PVR_FULL
),
270 DEFINE_PROP_END_OF_LIST(),
273 static ObjectClass
*mb_cpu_class_by_name(const char *cpu_model
)
275 return object_class_by_name(TYPE_MICROBLAZE_CPU
);
278 static void mb_cpu_class_init(ObjectClass
*oc
, void *data
)
280 DeviceClass
*dc
= DEVICE_CLASS(oc
);
281 CPUClass
*cc
= CPU_CLASS(oc
);
282 MicroBlazeCPUClass
*mcc
= MICROBLAZE_CPU_CLASS(oc
);
284 device_class_set_parent_realize(dc
, mb_cpu_realizefn
,
285 &mcc
->parent_realize
);
286 mcc
->parent_reset
= cc
->reset
;
287 cc
->reset
= mb_cpu_reset
;
289 cc
->class_by_name
= mb_cpu_class_by_name
;
290 cc
->has_work
= mb_cpu_has_work
;
291 cc
->do_interrupt
= mb_cpu_do_interrupt
;
292 cc
->cpu_exec_interrupt
= mb_cpu_exec_interrupt
;
293 cc
->dump_state
= mb_cpu_dump_state
;
294 cc
->set_pc
= mb_cpu_set_pc
;
295 cc
->gdb_read_register
= mb_cpu_gdb_read_register
;
296 cc
->gdb_write_register
= mb_cpu_gdb_write_register
;
297 #ifdef CONFIG_USER_ONLY
298 cc
->handle_mmu_fault
= mb_cpu_handle_mmu_fault
;
300 cc
->do_unassigned_access
= mb_cpu_unassigned_access
;
301 cc
->get_phys_page_debug
= mb_cpu_get_phys_page_debug
;
303 dc
->vmsd
= &vmstate_mb_cpu
;
304 dc
->props
= mb_properties
;
305 cc
->gdb_num_core_regs
= 32 + 5;
307 cc
->disas_set_info
= mb_disas_set_info
;
308 cc
->tcg_initialize
= mb_tcg_init
;
311 static const TypeInfo mb_cpu_type_info
= {
312 .name
= TYPE_MICROBLAZE_CPU
,
314 .instance_size
= sizeof(MicroBlazeCPU
),
315 .instance_init
= mb_cpu_initfn
,
316 .class_size
= sizeof(MicroBlazeCPUClass
),
317 .class_init
= mb_cpu_class_init
,
320 static void mb_cpu_register_types(void)
322 type_register_static(&mb_cpu_type_info
);
325 type_init(mb_cpu_register_types
)