]>
Commit | Line | Data |
---|---|---|
b77f98ca AF |
1 | /* |
2 | * QEMU MicroBlaze CPU | |
3 | * | |
61b6208f AF |
4 | * Copyright (c) 2009 Edgar E. Iglesias |
5 | * Copyright (c) 2009-2012 PetaLogix Qld Pty Ltd. | |
b77f98ca AF |
6 | * Copyright (c) 2012 SUSE LINUX Products GmbH |
7 | * | |
8 | * This library is free software; you can redistribute it and/or | |
9 | * modify it under the terms of the GNU Lesser General Public | |
10 | * License as published by the Free Software Foundation; either | |
11 | * version 2.1 of the License, or (at your option) any later version. | |
12 | * | |
13 | * This library is distributed in the hope that it will be useful, | |
14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
16 | * Lesser General Public License for more details. | |
17 | * | |
18 | * You should have received a copy of the GNU Lesser General Public | |
19 | * License along with this library; if not, see | |
20 | * <http://www.gnu.org/licenses/lgpl-2.1.html> | |
21 | */ | |
22 | ||
23 | #include "cpu.h" | |
24 | #include "qemu-common.h" | |
3ce8b2bc | 25 | #include "migration/vmstate.h" |
b77f98ca AF |
26 | |
27 | ||
28 | /* CPUClass::reset() */ | |
29 | static void mb_cpu_reset(CPUState *s) | |
30 | { | |
31 | MicroBlazeCPU *cpu = MICROBLAZE_CPU(s); | |
32 | MicroBlazeCPUClass *mcc = MICROBLAZE_CPU_GET_CLASS(cpu); | |
33 | CPUMBState *env = &cpu->env; | |
34 | ||
61b6208f | 35 | if (qemu_loglevel_mask(CPU_LOG_RESET)) { |
55e5c285 | 36 | qemu_log("CPU Reset (CPU %d)\n", s->cpu_index); |
61b6208f AF |
37 | log_cpu_state(env, 0); |
38 | } | |
39 | ||
b77f98ca AF |
40 | mcc->parent_reset(s); |
41 | ||
61b6208f | 42 | memset(env, 0, offsetof(CPUMBState, breakpoints)); |
8cc9b43f | 43 | env->res_addr = RES_ADDR_NONE; |
61b6208f AF |
44 | tlb_flush(env, 1); |
45 | ||
46 | /* Disable stack protector. */ | |
47 | env->shr = ~0; | |
48 | ||
49 | env->pvr.regs[0] = PVR0_PVR_FULL_MASK \ | |
50 | | PVR0_USE_BARREL_MASK \ | |
51 | | PVR0_USE_DIV_MASK \ | |
52 | | PVR0_USE_HW_MUL_MASK \ | |
53 | | PVR0_USE_EXC_MASK \ | |
54 | | PVR0_USE_ICACHE_MASK \ | |
55 | | PVR0_USE_DCACHE_MASK \ | |
56 | | PVR0_USE_MMU \ | |
57 | | (0xb << 8); | |
58 | env->pvr.regs[2] = PVR2_D_OPB_MASK \ | |
59 | | PVR2_D_LMB_MASK \ | |
60 | | PVR2_I_OPB_MASK \ | |
61 | | PVR2_I_LMB_MASK \ | |
62 | | PVR2_USE_MSR_INSTR \ | |
63 | | PVR2_USE_PCMP_INSTR \ | |
64 | | PVR2_USE_BARREL_MASK \ | |
65 | | PVR2_USE_DIV_MASK \ | |
66 | | PVR2_USE_HW_MUL_MASK \ | |
67 | | PVR2_USE_MUL64_MASK \ | |
68 | | PVR2_USE_FPU_MASK \ | |
69 | | PVR2_USE_FPU2_MASK \ | |
70 | | PVR2_FPU_EXC_MASK \ | |
71 | | 0; | |
72 | env->pvr.regs[10] = 0x0c000000; /* Default to spartan 3a dsp family. */ | |
73 | env->pvr.regs[11] = PVR11_USE_MMU | (16 << 17); | |
74 | ||
75 | #if defined(CONFIG_USER_ONLY) | |
76 | /* start in user mode with interrupts enabled. */ | |
77 | env->sregs[SR_MSR] = MSR_EE | MSR_IE | MSR_VM | MSR_UM; | |
78 | env->pvr.regs[10] = 0x0c000000; /* Spartan 3a dsp. */ | |
79 | #else | |
80 | env->sregs[SR_MSR] = 0; | |
81 | mmu_init(&env->mmu); | |
82 | env->mmu.c_mmu = 3; | |
83 | env->mmu.c_mmu_tlb_access = 3; | |
84 | env->mmu.c_mmu_zones = 16; | |
85 | #endif | |
b77f98ca AF |
86 | } |
87 | ||
746b03b2 AF |
88 | static void mb_cpu_realizefn(DeviceState *dev, Error **errp) |
89 | { | |
90 | MicroBlazeCPU *cpu = MICROBLAZE_CPU(dev); | |
91 | MicroBlazeCPUClass *mcc = MICROBLAZE_CPU_GET_CLASS(dev); | |
92 | ||
93 | cpu_reset(CPU(cpu)); | |
94 | qemu_init_vcpu(&cpu->env); | |
95 | ||
96 | mcc->parent_realize(dev, errp); | |
97 | } | |
98 | ||
d0e71ef5 AF |
99 | static void mb_cpu_initfn(Object *obj) |
100 | { | |
101 | MicroBlazeCPU *cpu = MICROBLAZE_CPU(obj); | |
102 | CPUMBState *env = &cpu->env; | |
103 | ||
104 | cpu_exec_init(env); | |
105 | ||
106 | set_float_rounding_mode(float_round_nearest_even, &env->fp_status); | |
107 | } | |
108 | ||
3ce8b2bc AF |
109 | static const VMStateDescription vmstate_mb_cpu = { |
110 | .name = "cpu", | |
111 | .unmigratable = 1, | |
112 | }; | |
113 | ||
b77f98ca AF |
114 | static void mb_cpu_class_init(ObjectClass *oc, void *data) |
115 | { | |
3ce8b2bc | 116 | DeviceClass *dc = DEVICE_CLASS(oc); |
b77f98ca AF |
117 | CPUClass *cc = CPU_CLASS(oc); |
118 | MicroBlazeCPUClass *mcc = MICROBLAZE_CPU_CLASS(oc); | |
119 | ||
746b03b2 AF |
120 | mcc->parent_realize = dc->realize; |
121 | dc->realize = mb_cpu_realizefn; | |
122 | ||
b77f98ca AF |
123 | mcc->parent_reset = cc->reset; |
124 | cc->reset = mb_cpu_reset; | |
3ce8b2bc AF |
125 | |
126 | dc->vmsd = &vmstate_mb_cpu; | |
b77f98ca AF |
127 | } |
128 | ||
129 | static const TypeInfo mb_cpu_type_info = { | |
130 | .name = TYPE_MICROBLAZE_CPU, | |
131 | .parent = TYPE_CPU, | |
132 | .instance_size = sizeof(MicroBlazeCPU), | |
d0e71ef5 | 133 | .instance_init = mb_cpu_initfn, |
b77f98ca AF |
134 | .class_size = sizeof(MicroBlazeCPUClass), |
135 | .class_init = mb_cpu_class_init, | |
136 | }; | |
137 | ||
138 | static void mb_cpu_register_types(void) | |
139 | { | |
140 | type_register_static(&mb_cpu_type_info); | |
141 | } | |
142 | ||
143 | type_init(mb_cpu_register_types) |