vga: pass owner to vga_init_vbe
[qemu/ar7.git] / qom / cpu.c
blobee8f632ecb7e2341842873050d015fdf7f65bdc1
1 /*
2 * QEMU CPU model
4 * Copyright (c) 2012 SUSE LINUX Products GmbH
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
11 * This program 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
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, see
18 * <http://www.gnu.org/licenses/gpl-2.0.html>
21 #include "qemu-common.h"
22 #include "qom/cpu.h"
23 #include "sysemu/kvm.h"
24 #include "qemu/notify.h"
25 #include "sysemu/sysemu.h"
27 typedef struct CPUExistsArgs {
28 int64_t id;
29 bool found;
30 } CPUExistsArgs;
32 static void cpu_exist_cb(CPUState *cpu, void *data)
34 CPUClass *klass = CPU_GET_CLASS(cpu);
35 CPUExistsArgs *arg = data;
37 if (klass->get_arch_id(cpu) == arg->id) {
38 arg->found = true;
42 bool cpu_exists(int64_t id)
44 CPUExistsArgs data = {
45 .id = id,
46 .found = false,
49 qemu_for_each_cpu(cpu_exist_cb, &data);
50 return data.found;
53 bool cpu_paging_enabled(const CPUState *cpu)
55 CPUClass *cc = CPU_GET_CLASS(cpu);
57 return cc->get_paging_enabled(cpu);
60 static bool cpu_common_get_paging_enabled(const CPUState *cpu)
62 return false;
65 void cpu_get_memory_mapping(CPUState *cpu, MemoryMappingList *list,
66 Error **errp)
68 CPUClass *cc = CPU_GET_CLASS(cpu);
70 return cc->get_memory_mapping(cpu, list, errp);
73 static void cpu_common_get_memory_mapping(CPUState *cpu,
74 MemoryMappingList *list,
75 Error **errp)
77 error_setg(errp, "Obtaining memory mappings is unsupported on this CPU.");
80 /* CPU hot-plug notifiers */
81 static NotifierList cpu_added_notifiers =
82 NOTIFIER_LIST_INITIALIZER(cpu_add_notifiers);
84 void qemu_register_cpu_added_notifier(Notifier *notifier)
86 notifier_list_add(&cpu_added_notifiers, notifier);
89 void cpu_reset_interrupt(CPUState *cpu, int mask)
91 cpu->interrupt_request &= ~mask;
94 void cpu_exit(CPUState *cpu)
96 cpu->exit_request = 1;
97 cpu->tcg_exit_req = 1;
100 int cpu_write_elf32_qemunote(WriteCoreDumpFunction f, CPUState *cpu,
101 void *opaque)
103 CPUClass *cc = CPU_GET_CLASS(cpu);
105 return (*cc->write_elf32_qemunote)(f, cpu, opaque);
108 static int cpu_common_write_elf32_qemunote(WriteCoreDumpFunction f,
109 CPUState *cpu, void *opaque)
111 return -1;
114 int cpu_write_elf32_note(WriteCoreDumpFunction f, CPUState *cpu,
115 int cpuid, void *opaque)
117 CPUClass *cc = CPU_GET_CLASS(cpu);
119 return (*cc->write_elf32_note)(f, cpu, cpuid, opaque);
122 static int cpu_common_write_elf32_note(WriteCoreDumpFunction f,
123 CPUState *cpu, int cpuid,
124 void *opaque)
126 return -1;
129 int cpu_write_elf64_qemunote(WriteCoreDumpFunction f, CPUState *cpu,
130 void *opaque)
132 CPUClass *cc = CPU_GET_CLASS(cpu);
134 return (*cc->write_elf64_qemunote)(f, cpu, opaque);
137 static int cpu_common_write_elf64_qemunote(WriteCoreDumpFunction f,
138 CPUState *cpu, void *opaque)
140 return -1;
143 int cpu_write_elf64_note(WriteCoreDumpFunction f, CPUState *cpu,
144 int cpuid, void *opaque)
146 CPUClass *cc = CPU_GET_CLASS(cpu);
148 return (*cc->write_elf64_note)(f, cpu, cpuid, opaque);
151 static int cpu_common_write_elf64_note(WriteCoreDumpFunction f,
152 CPUState *cpu, int cpuid,
153 void *opaque)
155 return -1;
159 void cpu_dump_state(CPUState *cpu, FILE *f, fprintf_function cpu_fprintf,
160 int flags)
162 CPUClass *cc = CPU_GET_CLASS(cpu);
164 if (cc->dump_state) {
165 cc->dump_state(cpu, f, cpu_fprintf, flags);
169 void cpu_dump_statistics(CPUState *cpu, FILE *f, fprintf_function cpu_fprintf,
170 int flags)
172 CPUClass *cc = CPU_GET_CLASS(cpu);
174 if (cc->dump_statistics) {
175 cc->dump_statistics(cpu, f, cpu_fprintf, flags);
179 void cpu_reset(CPUState *cpu)
181 CPUClass *klass = CPU_GET_CLASS(cpu);
183 if (klass->reset != NULL) {
184 (*klass->reset)(cpu);
188 static void cpu_common_reset(CPUState *cpu)
190 cpu->exit_request = 0;
191 cpu->interrupt_request = 0;
192 cpu->current_tb = NULL;
193 cpu->halted = 0;
196 ObjectClass *cpu_class_by_name(const char *typename, const char *cpu_model)
198 CPUClass *cc = CPU_CLASS(object_class_by_name(typename));
200 return cc->class_by_name(cpu_model);
203 static ObjectClass *cpu_common_class_by_name(const char *cpu_model)
205 return NULL;
208 static void cpu_common_realizefn(DeviceState *dev, Error **errp)
210 CPUState *cpu = CPU(dev);
212 qemu_init_vcpu(cpu);
214 if (dev->hotplugged) {
215 cpu_synchronize_post_init(cpu);
216 notifier_list_notify(&cpu_added_notifiers, dev);
217 cpu_resume(cpu);
221 static int64_t cpu_common_get_arch_id(CPUState *cpu)
223 return cpu->cpu_index;
226 static void cpu_class_init(ObjectClass *klass, void *data)
228 DeviceClass *dc = DEVICE_CLASS(klass);
229 CPUClass *k = CPU_CLASS(klass);
231 k->class_by_name = cpu_common_class_by_name;
232 k->reset = cpu_common_reset;
233 k->get_arch_id = cpu_common_get_arch_id;
234 k->get_paging_enabled = cpu_common_get_paging_enabled;
235 k->get_memory_mapping = cpu_common_get_memory_mapping;
236 k->write_elf32_qemunote = cpu_common_write_elf32_qemunote;
237 k->write_elf32_note = cpu_common_write_elf32_note;
238 k->write_elf64_qemunote = cpu_common_write_elf64_qemunote;
239 k->write_elf64_note = cpu_common_write_elf64_note;
240 dc->realize = cpu_common_realizefn;
241 dc->no_user = 1;
244 static const TypeInfo cpu_type_info = {
245 .name = TYPE_CPU,
246 .parent = TYPE_DEVICE,
247 .instance_size = sizeof(CPUState),
248 .abstract = true,
249 .class_size = sizeof(CPUClass),
250 .class_init = cpu_class_init,
253 static void cpu_register_types(void)
255 type_register_static(&cpu_type_info);
258 type_init(cpu_register_types)