]> git.proxmox.com Git - mirror_qemu.git/blame - hw/i386/x86.c
hw/i386: Make pic a property of common x86 base machine type
[mirror_qemu.git] / hw / i386 / x86.c
CommitLineData
549e984e
SL
1/*
2 * Copyright (c) 2003-2004 Fabrice Bellard
3 * Copyright (c) 2019 Red Hat, Inc.
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a copy
6 * of this software and associated documentation files (the "Software"), to deal
7 * in the Software without restriction, including without limitation the rights
8 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 * copies of the Software, and to permit persons to whom the Software is
10 * furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice shall be included in
13 * all copies or substantial portions of the Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21 * THE SOFTWARE.
22 */
23#include "qemu/osdep.h"
24#include "qemu/error-report.h"
25#include "qemu/option.h"
26#include "qemu/cutils.h"
27#include "qemu/units.h"
2c65db5e 28#include "qemu/datadir.h"
549e984e
SL
29#include "qapi/error.h"
30#include "qapi/qmp/qerror.h"
31#include "qapi/qapi-visit-common.h"
dfce81f1
SC
32#include "qapi/clone-visitor.h"
33#include "qapi/qapi-visit-machine.h"
549e984e
SL
34#include "qapi/visitor.h"
35#include "sysemu/qtest.h"
faf20793 36#include "sysemu/whpx.h"
549e984e
SL
37#include "sysemu/numa.h"
38#include "sysemu/replay.h"
39#include "sysemu/sysemu.h"
740b1759 40#include "sysemu/cpu-timers.h"
dc89f32d 41#include "sysemu/xen.h"
89a289c7 42#include "trace.h"
549e984e
SL
43
44#include "hw/i386/x86.h"
549e984e
SL
45#include "target/i386/cpu.h"
46#include "hw/i386/topology.h"
47#include "hw/i386/fw_cfg.h"
852c27e2 48#include "hw/intc/i8259.h"
0cca1a91 49#include "hw/rtc/mc146818rtc.h"
93777de3 50#include "target/i386/sev.h"
549e984e
SL
51
52#include "hw/acpi/cpu_hotplug.h"
89a289c7 53#include "hw/irq.h"
549e984e
SL
54#include "hw/nmi.h"
55#include "hw/loader.h"
56#include "multiboot.h"
57#include "elf.h"
58#include "standard-headers/asm-x86/bootparam.h"
2becc36a 59#include CONFIG_DEVICES
a9dc68d9 60#include "kvm/kvm_i386.h"
549e984e 61
549e984e
SL
62/* Physical Address of PVH entry point read from kernel ELF NOTE */
63static size_t pvh_start_addr;
64
53a5e7bd
BM
65inline void init_topo_info(X86CPUTopoInfo *topo_info,
66 const X86MachineState *x86ms)
67{
68 MachineState *ms = MACHINE(x86ms);
69
67872eb8 70 topo_info->dies_per_pkg = ms->smp.dies;
53a5e7bd
BM
71 topo_info->cores_per_die = ms->smp.cores;
72 topo_info->threads_per_core = ms->smp.threads;
73}
74
549e984e
SL
75/*
76 * Calculates initial APIC ID for a specific CPU index
77 *
78 * Currently we need to be able to calculate the APIC ID from the CPU index
79 * alone (without requiring a CPU object), as the QEMU<->Seabios interfaces have
80 * no concept of "CPU index", and the NUMA tables on fw_cfg need the APIC ID of
81 * all CPUs up to max_cpus.
82 */
703a548a 83uint32_t x86_cpu_apic_id_from_index(X86MachineState *x86ms,
549e984e
SL
84 unsigned int cpu_index)
85{
53a5e7bd 86 X86CPUTopoInfo topo_info;
549e984e 87
53a5e7bd
BM
88 init_topo_info(&topo_info, x86ms);
89
e6895f04 90 return x86_apicid_from_cpu_idx(&topo_info, cpu_index);
549e984e
SL
91}
92
703a548a
SL
93
94void x86_cpu_new(X86MachineState *x86ms, int64_t apic_id, Error **errp)
549e984e 95{
18d588fe 96 Object *cpu = object_new(MACHINE(x86ms)->cpu_type);
549e984e 97
992861fb 98 if (!object_property_set_uint(cpu, "apic-id", apic_id, errp)) {
18d588fe
MA
99 goto out;
100 }
992861fb 101 qdev_realize(DEVICE(cpu), NULL, errp);
549e984e 102
18d588fe 103out:
549e984e 104 object_unref(cpu);
549e984e
SL
105}
106
703a548a 107void x86_cpus_init(X86MachineState *x86ms, int default_cpu_version)
549e984e
SL
108{
109 int i;
110 const CPUArchIdList *possible_cpus;
703a548a
SL
111 MachineState *ms = MACHINE(x86ms);
112 MachineClass *mc = MACHINE_GET_CLASS(x86ms);
549e984e 113
703a548a 114 x86_cpu_set_default_version(default_cpu_version);
549e984e
SL
115
116 /*
117 * Calculates the limit to CPU APIC ID values
118 *
119 * Limit for the APIC ID value, so that all
703a548a 120 * CPU APIC IDs are < x86ms->apic_id_limit.
549e984e
SL
121 *
122 * This is used for FW_CFG_MAX_CPUS. See comments on fw_cfg_arch_create().
123 */
703a548a 124 x86ms->apic_id_limit = x86_cpu_apic_id_from_index(x86ms,
f0bb276b 125 ms->smp.max_cpus - 1) + 1;
dc89f32d
DW
126
127 /*
128 * Can we support APIC ID 255 or higher?
129 *
130 * Under Xen: yes.
131 * With userspace emulated lapic: no
132 * With KVM's in-kernel lapic: only if X2APIC API is enabled.
133 */
134 if (x86ms->apic_id_limit > 255 && !xen_enabled() &&
135 (!kvm_irqchip_in_kernel() || !kvm_enable_x2apic())) {
136 error_report("current -smp configuration requires kernel "
137 "irqchip and X2APIC API support.");
138 exit(EXIT_FAILURE);
139 }
140
549e984e
SL
141 possible_cpus = mc->possible_cpu_arch_ids(ms);
142 for (i = 0; i < ms->smp.cpus; i++) {
703a548a 143 x86_cpu_new(x86ms, possible_cpus->cpus[i].arch_id, &error_fatal);
549e984e
SL
144 }
145}
0cca1a91
GH
146
147void x86_rtc_set_cpus_count(ISADevice *rtc, uint16_t cpus_count)
148{
149 if (cpus_count > 0xff) {
150 /*
151 * If the number of CPUs can't be represented in 8 bits, the
152 * BIOS must use "FW_CFG_NB_CPUS". Set RTC field to 0 just
153 * to make old BIOSes fail more predictably.
154 */
155 rtc_set_memory(rtc, 0x5f, 0);
156 } else {
157 rtc_set_memory(rtc, 0x5f, cpus_count - 1);
158 }
159}
160
161static int x86_apic_cmp(const void *a, const void *b)
162{
163 CPUArchId *apic_a = (CPUArchId *)a;
164 CPUArchId *apic_b = (CPUArchId *)b;
165
166 return apic_a->arch_id - apic_b->arch_id;
167}
168
169/*
170 * returns pointer to CPUArchId descriptor that matches CPU's apic_id
171 * in ms->possible_cpus->cpus, if ms->possible_cpus->cpus has no
172 * entry corresponding to CPU's apic_id returns NULL.
173 */
174CPUArchId *x86_find_cpu_slot(MachineState *ms, uint32_t id, int *idx)
175{
176 CPUArchId apic_id, *found_cpu;
177
178 apic_id.arch_id = id;
179 found_cpu = bsearch(&apic_id, ms->possible_cpus->cpus,
180 ms->possible_cpus->len, sizeof(*ms->possible_cpus->cpus),
181 x86_apic_cmp);
182 if (found_cpu && idx) {
183 *idx = found_cpu - ms->possible_cpus->cpus;
184 }
185 return found_cpu;
186}
187
188void x86_cpu_plug(HotplugHandler *hotplug_dev,
189 DeviceState *dev, Error **errp)
190{
191 CPUArchId *found_cpu;
192 Error *local_err = NULL;
193 X86CPU *cpu = X86_CPU(dev);
194 X86MachineState *x86ms = X86_MACHINE(hotplug_dev);
195
196 if (x86ms->acpi_dev) {
197 hotplug_handler_plug(x86ms->acpi_dev, dev, &local_err);
198 if (local_err) {
199 goto out;
200 }
201 }
202
203 /* increment the number of CPUs */
204 x86ms->boot_cpus++;
205 if (x86ms->rtc) {
206 x86_rtc_set_cpus_count(x86ms->rtc, x86ms->boot_cpus);
207 }
208 if (x86ms->fw_cfg) {
209 fw_cfg_modify_i16(x86ms->fw_cfg, FW_CFG_NB_CPUS, x86ms->boot_cpus);
210 }
211
212 found_cpu = x86_find_cpu_slot(MACHINE(x86ms), cpu->apic_id, NULL);
213 found_cpu->cpu = OBJECT(dev);
214out:
215 error_propagate(errp, local_err);
216}
217
218void x86_cpu_unplug_request_cb(HotplugHandler *hotplug_dev,
219 DeviceState *dev, Error **errp)
220{
221 int idx = -1;
222 X86CPU *cpu = X86_CPU(dev);
223 X86MachineState *x86ms = X86_MACHINE(hotplug_dev);
224
225 if (!x86ms->acpi_dev) {
226 error_setg(errp, "CPU hot unplug not supported without ACPI");
227 return;
228 }
229
230 x86_find_cpu_slot(MACHINE(x86ms), cpu->apic_id, &idx);
231 assert(idx != -1);
232 if (idx == 0) {
233 error_setg(errp, "Boot CPU is unpluggable");
234 return;
235 }
236
237 hotplug_handler_unplug_request(x86ms->acpi_dev, dev,
238 errp);
239}
240
241void x86_cpu_unplug_cb(HotplugHandler *hotplug_dev,
242 DeviceState *dev, Error **errp)
243{
244 CPUArchId *found_cpu;
245 Error *local_err = NULL;
246 X86CPU *cpu = X86_CPU(dev);
247 X86MachineState *x86ms = X86_MACHINE(hotplug_dev);
248
249 hotplug_handler_unplug(x86ms->acpi_dev, dev, &local_err);
250 if (local_err) {
251 goto out;
252 }
253
254 found_cpu = x86_find_cpu_slot(MACHINE(x86ms), cpu->apic_id, NULL);
255 found_cpu->cpu = NULL;
256 qdev_unrealize(dev);
257
258 /* decrement the number of CPUs */
259 x86ms->boot_cpus--;
260 /* Update the number of CPUs in CMOS */
261 x86_rtc_set_cpus_count(x86ms->rtc, x86ms->boot_cpus);
262 fw_cfg_modify_i16(x86ms->fw_cfg, FW_CFG_NB_CPUS, x86ms->boot_cpus);
263 out:
264 error_propagate(errp, local_err);
265}
266
267void x86_cpu_pre_plug(HotplugHandler *hotplug_dev,
268 DeviceState *dev, Error **errp)
269{
270 int idx;
271 CPUState *cs;
272 CPUArchId *cpu_slot;
273 X86CPUTopoIDs topo_ids;
274 X86CPU *cpu = X86_CPU(dev);
275 CPUX86State *env = &cpu->env;
276 MachineState *ms = MACHINE(hotplug_dev);
277 X86MachineState *x86ms = X86_MACHINE(hotplug_dev);
278 unsigned int smp_cores = ms->smp.cores;
279 unsigned int smp_threads = ms->smp.threads;
280 X86CPUTopoInfo topo_info;
281
282 if (!object_dynamic_cast(OBJECT(cpu), ms->cpu_type)) {
283 error_setg(errp, "Invalid CPU type, expected cpu type: '%s'",
284 ms->cpu_type);
285 return;
286 }
287
c5be7517
IM
288 if (x86ms->acpi_dev) {
289 Error *local_err = NULL;
290
291 hotplug_handler_pre_plug(HOTPLUG_HANDLER(x86ms->acpi_dev), dev,
292 &local_err);
293 if (local_err) {
294 error_propagate(errp, local_err);
295 return;
296 }
297 }
298
0cca1a91
GH
299 init_topo_info(&topo_info, x86ms);
300
67872eb8 301 env->nr_dies = ms->smp.dies;
0cca1a91
GH
302
303 /*
304 * If APIC ID is not set,
305 * set it based on socket/die/core/thread properties.
306 */
307 if (cpu->apic_id == UNASSIGNED_APIC_ID) {
308 int max_socket = (ms->smp.max_cpus - 1) /
67872eb8 309 smp_threads / smp_cores / ms->smp.dies;
0cca1a91
GH
310
311 /*
312 * die-id was optional in QEMU 4.0 and older, so keep it optional
313 * if there's only one die per socket.
314 */
67872eb8 315 if (cpu->die_id < 0 && ms->smp.dies == 1) {
0cca1a91
GH
316 cpu->die_id = 0;
317 }
318
319 if (cpu->socket_id < 0) {
320 error_setg(errp, "CPU socket-id is not set");
321 return;
322 } else if (cpu->socket_id > max_socket) {
323 error_setg(errp, "Invalid CPU socket-id: %u must be in range 0:%u",
324 cpu->socket_id, max_socket);
325 return;
326 }
327 if (cpu->die_id < 0) {
328 error_setg(errp, "CPU die-id is not set");
329 return;
67872eb8 330 } else if (cpu->die_id > ms->smp.dies - 1) {
0cca1a91 331 error_setg(errp, "Invalid CPU die-id: %u must be in range 0:%u",
67872eb8 332 cpu->die_id, ms->smp.dies - 1);
0cca1a91
GH
333 return;
334 }
335 if (cpu->core_id < 0) {
336 error_setg(errp, "CPU core-id is not set");
337 return;
338 } else if (cpu->core_id > (smp_cores - 1)) {
339 error_setg(errp, "Invalid CPU core-id: %u must be in range 0:%u",
340 cpu->core_id, smp_cores - 1);
341 return;
342 }
343 if (cpu->thread_id < 0) {
344 error_setg(errp, "CPU thread-id is not set");
345 return;
346 } else if (cpu->thread_id > (smp_threads - 1)) {
347 error_setg(errp, "Invalid CPU thread-id: %u must be in range 0:%u",
348 cpu->thread_id, smp_threads - 1);
349 return;
350 }
351
352 topo_ids.pkg_id = cpu->socket_id;
353 topo_ids.die_id = cpu->die_id;
354 topo_ids.core_id = cpu->core_id;
355 topo_ids.smt_id = cpu->thread_id;
356 cpu->apic_id = x86_apicid_from_topo_ids(&topo_info, &topo_ids);
357 }
358
359 cpu_slot = x86_find_cpu_slot(MACHINE(x86ms), cpu->apic_id, &idx);
360 if (!cpu_slot) {
361 MachineState *ms = MACHINE(x86ms);
362
363 x86_topo_ids_from_apicid(cpu->apic_id, &topo_info, &topo_ids);
364 error_setg(errp,
365 "Invalid CPU [socket: %u, die: %u, core: %u, thread: %u] with"
366 " APIC ID %" PRIu32 ", valid index range 0:%d",
367 topo_ids.pkg_id, topo_ids.die_id, topo_ids.core_id, topo_ids.smt_id,
368 cpu->apic_id, ms->possible_cpus->len - 1);
369 return;
370 }
371
372 if (cpu_slot->cpu) {
373 error_setg(errp, "CPU[%d] with APIC ID %" PRIu32 " exists",
374 idx, cpu->apic_id);
375 return;
376 }
377
378 /* if 'address' properties socket-id/core-id/thread-id are not set, set them
379 * so that machine_query_hotpluggable_cpus would show correct values
380 */
381 /* TODO: move socket_id/core_id/thread_id checks into x86_cpu_realizefn()
382 * once -smp refactoring is complete and there will be CPU private
383 * CPUState::nr_cores and CPUState::nr_threads fields instead of globals */
384 x86_topo_ids_from_apicid(cpu->apic_id, &topo_info, &topo_ids);
385 if (cpu->socket_id != -1 && cpu->socket_id != topo_ids.pkg_id) {
386 error_setg(errp, "property socket-id: %u doesn't match set apic-id:"
387 " 0x%x (socket-id: %u)", cpu->socket_id, cpu->apic_id,
388 topo_ids.pkg_id);
389 return;
390 }
391 cpu->socket_id = topo_ids.pkg_id;
392
393 if (cpu->die_id != -1 && cpu->die_id != topo_ids.die_id) {
394 error_setg(errp, "property die-id: %u doesn't match set apic-id:"
395 " 0x%x (die-id: %u)", cpu->die_id, cpu->apic_id, topo_ids.die_id);
396 return;
397 }
398 cpu->die_id = topo_ids.die_id;
399
400 if (cpu->core_id != -1 && cpu->core_id != topo_ids.core_id) {
401 error_setg(errp, "property core-id: %u doesn't match set apic-id:"
402 " 0x%x (core-id: %u)", cpu->core_id, cpu->apic_id,
403 topo_ids.core_id);
404 return;
405 }
406 cpu->core_id = topo_ids.core_id;
407
408 if (cpu->thread_id != -1 && cpu->thread_id != topo_ids.smt_id) {
409 error_setg(errp, "property thread-id: %u doesn't match set apic-id:"
410 " 0x%x (thread-id: %u)", cpu->thread_id, cpu->apic_id,
411 topo_ids.smt_id);
412 return;
413 }
414 cpu->thread_id = topo_ids.smt_id;
415
416 if (hyperv_feat_enabled(cpu, HYPERV_FEAT_VPINDEX) &&
417 !kvm_hv_vpindex_settable()) {
418 error_setg(errp, "kernel doesn't allow setting HyperV VP_INDEX");
419 return;
420 }
421
422 cs = CPU(cpu);
423 cs->cpu_index = idx;
424
425 numa_cpu_pre_plug(cpu_slot, dev, errp);
426}
549e984e
SL
427
428CpuInstanceProperties
429x86_cpu_index_to_props(MachineState *ms, unsigned cpu_index)
430{
431 MachineClass *mc = MACHINE_GET_CLASS(ms);
432 const CPUArchIdList *possible_cpus = mc->possible_cpu_arch_ids(ms);
433
434 assert(cpu_index < possible_cpus->len);
435 return possible_cpus->cpus[cpu_index].props;
436}
437
438int64_t x86_get_default_cpu_node_id(const MachineState *ms, int idx)
439{
dcf08bc6 440 X86CPUTopoIDs topo_ids;
f0bb276b 441 X86MachineState *x86ms = X86_MACHINE(ms);
53a5e7bd
BM
442 X86CPUTopoInfo topo_info;
443
444 init_topo_info(&topo_info, x86ms);
549e984e
SL
445
446 assert(idx < ms->possible_cpus->len);
dfe7ed0a
BM
447 x86_topo_ids_from_apicid(ms->possible_cpus->cpus[idx].arch_id,
448 &topo_info, &topo_ids);
dcf08bc6 449 return topo_ids.pkg_id % ms->numa_state->num_nodes;
549e984e
SL
450}
451
452const CPUArchIdList *x86_possible_cpu_arch_ids(MachineState *ms)
453{
f0bb276b 454 X86MachineState *x86ms = X86_MACHINE(ms);
549e984e 455 unsigned int max_cpus = ms->smp.max_cpus;
53a5e7bd
BM
456 X86CPUTopoInfo topo_info;
457 int i;
549e984e
SL
458
459 if (ms->possible_cpus) {
460 /*
461 * make sure that max_cpus hasn't changed since the first use, i.e.
462 * -smp hasn't been parsed after it
463 */
464 assert(ms->possible_cpus->len == max_cpus);
465 return ms->possible_cpus;
466 }
467
468 ms->possible_cpus = g_malloc0(sizeof(CPUArchIdList) +
469 sizeof(CPUArchId) * max_cpus);
470 ms->possible_cpus->len = max_cpus;
53a5e7bd
BM
471
472 init_topo_info(&topo_info, x86ms);
473
549e984e 474 for (i = 0; i < ms->possible_cpus->len; i++) {
dcf08bc6 475 X86CPUTopoIDs topo_ids;
549e984e
SL
476
477 ms->possible_cpus->cpus[i].type = ms->cpu_type;
478 ms->possible_cpus->cpus[i].vcpus_count = 1;
dfe7ed0a
BM
479 ms->possible_cpus->cpus[i].arch_id =
480 x86_cpu_apic_id_from_index(x86ms, i);
481 x86_topo_ids_from_apicid(ms->possible_cpus->cpus[i].arch_id,
482 &topo_info, &topo_ids);
549e984e 483 ms->possible_cpus->cpus[i].props.has_socket_id = true;
dcf08bc6 484 ms->possible_cpus->cpus[i].props.socket_id = topo_ids.pkg_id;
67872eb8 485 if (ms->smp.dies > 1) {
549e984e 486 ms->possible_cpus->cpus[i].props.has_die_id = true;
dcf08bc6 487 ms->possible_cpus->cpus[i].props.die_id = topo_ids.die_id;
549e984e
SL
488 }
489 ms->possible_cpus->cpus[i].props.has_core_id = true;
dcf08bc6 490 ms->possible_cpus->cpus[i].props.core_id = topo_ids.core_id;
549e984e 491 ms->possible_cpus->cpus[i].props.has_thread_id = true;
dcf08bc6 492 ms->possible_cpus->cpus[i].props.thread_id = topo_ids.smt_id;
549e984e
SL
493 }
494 return ms->possible_cpus;
495}
496
f0bb276b
PB
497static void x86_nmi(NMIState *n, int cpu_index, Error **errp)
498{
499 /* cpu index isn't used */
500 CPUState *cs;
501
502 CPU_FOREACH(cs) {
503 X86CPU *cpu = X86_CPU(cs);
504
505 if (!cpu->apic_state) {
506 cpu_interrupt(cs, CPU_INTERRUPT_NMI);
507 } else {
508 apic_deliver_nmi(cpu->apic_state);
509 }
510 }
511}
512
549e984e
SL
513static long get_file_size(FILE *f)
514{
515 long where, size;
516
517 /* XXX: on Unix systems, using fstat() probably makes more sense */
518
519 where = ftell(f);
520 fseek(f, 0, SEEK_END);
521 size = ftell(f);
522 fseek(f, where, SEEK_SET);
523
524 return size;
525}
526
89a289c7
PB
527/* TSC handling */
528uint64_t cpu_get_tsc(CPUX86State *env)
529{
430065da 530 return cpus_get_elapsed_ticks();
89a289c7
PB
531}
532
533/* IRQ handling */
534static void pic_irq_request(void *opaque, int irq, int level)
535{
536 CPUState *cs = first_cpu;
537 X86CPU *cpu = X86_CPU(cs);
538
539 trace_x86_pic_interrupt(irq, level);
faf20793
SM
540 if (cpu->apic_state && !kvm_irqchip_in_kernel() &&
541 !whpx_apic_in_platform()) {
89a289c7
PB
542 CPU_FOREACH(cs) {
543 cpu = X86_CPU(cs);
544 if (apic_accept_pic_intr(cpu->apic_state)) {
545 apic_deliver_pic_intr(cpu->apic_state, level);
546 }
547 }
548 } else {
549 if (level) {
550 cpu_interrupt(cs, CPU_INTERRUPT_HARD);
551 } else {
552 cpu_reset_interrupt(cs, CPU_INTERRUPT_HARD);
553 }
554 }
555}
556
557qemu_irq x86_allocate_cpu_irq(void)
558{
559 return qemu_allocate_irq(pic_irq_request, NULL, 0);
560}
561
562int cpu_get_pic_interrupt(CPUX86State *env)
563{
564 X86CPU *cpu = env_archcpu(env);
565 int intno;
566
faf20793 567 if (!kvm_irqchip_in_kernel() && !whpx_apic_in_platform()) {
89a289c7
PB
568 intno = apic_get_interrupt(cpu->apic_state);
569 if (intno >= 0) {
570 return intno;
571 }
572 /* read the irq from the PIC */
573 if (!apic_accept_pic_intr(cpu->apic_state)) {
574 return -1;
575 }
576 }
577
578 intno = pic_read_irq(isa_pic);
579 return intno;
580}
581
582DeviceState *cpu_get_current_apic(void)
583{
584 if (current_cpu) {
585 X86CPU *cpu = X86_CPU(current_cpu);
586 return cpu->apic_state;
587 } else {
588 return NULL;
589 }
590}
591
592void gsi_handler(void *opaque, int n, int level)
593{
594 GSIState *s = opaque;
595
596 trace_x86_gsi_interrupt(n, level);
ceea95cd
GH
597 switch (n) {
598 case 0 ... ISA_NUM_IRQS - 1:
599 if (s->i8259_irq[n]) {
600 /* Under KVM, Kernel will forward to both PIC and IOAPIC */
601 qemu_set_irq(s->i8259_irq[n], level);
602 }
603 /* fall through */
604 case ISA_NUM_IRQS ... IOAPIC_NUM_PINS - 1:
605 qemu_set_irq(s->ioapic_irq[n], level);
606 break;
94c5a606
GH
607 case IO_APIC_SECONDARY_IRQBASE
608 ... IO_APIC_SECONDARY_IRQBASE + IOAPIC_NUM_PINS - 1:
609 qemu_set_irq(s->ioapic2_irq[n - IO_APIC_SECONDARY_IRQBASE], level);
610 break;
89a289c7 611 }
89a289c7
PB
612}
613
614void ioapic_init_gsi(GSIState *gsi_state, const char *parent_name)
615{
616 DeviceState *dev;
617 SysBusDevice *d;
618 unsigned int i;
619
14a1bb48 620 assert(parent_name);
89a289c7 621 if (kvm_ioapic_in_kernel()) {
3e80f690 622 dev = qdev_new(TYPE_KVM_IOAPIC);
89a289c7 623 } else {
3e80f690 624 dev = qdev_new(TYPE_IOAPIC);
89a289c7 625 }
14a1bb48 626 object_property_add_child(object_resolve_path(parent_name, NULL),
d2623129 627 "ioapic", OBJECT(dev));
89a289c7 628 d = SYS_BUS_DEVICE(dev);
3c6ef471 629 sysbus_realize_and_unref(d, &error_fatal);
89a289c7
PB
630 sysbus_mmio_map(d, 0, IO_APIC_DEFAULT_ADDRESS);
631
632 for (i = 0; i < IOAPIC_NUM_PINS; i++) {
633 gsi_state->ioapic_irq[i] = qdev_get_gpio_in(dev, i);
634 }
635}
636
94c5a606
GH
637DeviceState *ioapic_init_secondary(GSIState *gsi_state)
638{
639 DeviceState *dev;
640 SysBusDevice *d;
641 unsigned int i;
642
643 dev = qdev_new(TYPE_IOAPIC);
644 d = SYS_BUS_DEVICE(dev);
645 sysbus_realize_and_unref(d, &error_fatal);
646 sysbus_mmio_map(d, 0, IO_APIC_SECONDARY_ADDRESS);
647
648 for (i = 0; i < IOAPIC_NUM_PINS; i++) {
649 gsi_state->ioapic2_irq[i] = qdev_get_gpio_in(dev, i);
650 }
651 return dev;
652}
653
549e984e
SL
654struct setup_data {
655 uint64_t next;
656 uint32_t type;
657 uint32_t len;
f7795e40 658 uint8_t data[];
549e984e
SL
659} __attribute__((packed));
660
661
662/*
663 * The entry point into the kernel for PVH boot is different from
664 * the native entry point. The PVH entry is defined by the x86/HVM
665 * direct boot ABI and is available in an ELFNOTE in the kernel binary.
666 *
667 * This function is passed to load_elf() when it is called from
668 * load_elfboot() which then additionally checks for an ELF Note of
669 * type XEN_ELFNOTE_PHYS32_ENTRY and passes it to this function to
670 * parse the PVH entry address from the ELF Note.
671 *
672 * Due to trickery in elf_opts.h, load_elf() is actually available as
673 * load_elf32() or load_elf64() and this routine needs to be able
674 * to deal with being called as 32 or 64 bit.
675 *
676 * The address of the PVH entry point is saved to the 'pvh_start_addr'
677 * global variable. (although the entry point is 32-bit, the kernel
678 * binary can be either 32-bit or 64-bit).
679 */
680static uint64_t read_pvh_start_addr(void *arg1, void *arg2, bool is64)
681{
682 size_t *elf_note_data_addr;
683
684 /* Check if ELF Note header passed in is valid */
685 if (arg1 == NULL) {
686 return 0;
687 }
688
689 if (is64) {
690 struct elf64_note *nhdr64 = (struct elf64_note *)arg1;
691 uint64_t nhdr_size64 = sizeof(struct elf64_note);
692 uint64_t phdr_align = *(uint64_t *)arg2;
693 uint64_t nhdr_namesz = nhdr64->n_namesz;
694
695 elf_note_data_addr =
696 ((void *)nhdr64) + nhdr_size64 +
697 QEMU_ALIGN_UP(nhdr_namesz, phdr_align);
e20e182e
DE
698
699 pvh_start_addr = *elf_note_data_addr;
549e984e
SL
700 } else {
701 struct elf32_note *nhdr32 = (struct elf32_note *)arg1;
702 uint32_t nhdr_size32 = sizeof(struct elf32_note);
703 uint32_t phdr_align = *(uint32_t *)arg2;
704 uint32_t nhdr_namesz = nhdr32->n_namesz;
705
706 elf_note_data_addr =
707 ((void *)nhdr32) + nhdr_size32 +
708 QEMU_ALIGN_UP(nhdr_namesz, phdr_align);
549e984e 709
e20e182e
DE
710 pvh_start_addr = *(uint32_t *)elf_note_data_addr;
711 }
549e984e
SL
712
713 return pvh_start_addr;
714}
715
716static bool load_elfboot(const char *kernel_filename,
717 int kernel_file_size,
718 uint8_t *header,
719 size_t pvh_xen_start_addr,
720 FWCfgState *fw_cfg)
721{
722 uint32_t flags = 0;
723 uint32_t mh_load_addr = 0;
724 uint32_t elf_kernel_size = 0;
725 uint64_t elf_entry;
726 uint64_t elf_low, elf_high;
727 int kernel_size;
728
729 if (ldl_p(header) != 0x464c457f) {
730 return false; /* no elfboot */
731 }
732
733 bool elf_is64 = header[EI_CLASS] == ELFCLASS64;
734 flags = elf_is64 ?
735 ((Elf64_Ehdr *)header)->e_flags : ((Elf32_Ehdr *)header)->e_flags;
736
737 if (flags & 0x00010004) { /* LOAD_ELF_HEADER_HAS_ADDR */
738 error_report("elfboot unsupported flags = %x", flags);
739 exit(1);
740 }
741
742 uint64_t elf_note_type = XEN_ELFNOTE_PHYS32_ENTRY;
743 kernel_size = load_elf(kernel_filename, read_pvh_start_addr,
744 NULL, &elf_note_type, &elf_entry,
6cdda0ff 745 &elf_low, &elf_high, NULL, 0, I386_ELF_MACHINE,
549e984e
SL
746 0, 0);
747
748 if (kernel_size < 0) {
749 error_report("Error while loading elf kernel");
750 exit(1);
751 }
752 mh_load_addr = elf_low;
753 elf_kernel_size = elf_high - elf_low;
754
755 if (pvh_start_addr == 0) {
756 error_report("Error loading uncompressed kernel without PVH ELF Note");
757 exit(1);
758 }
759 fw_cfg_add_i32(fw_cfg, FW_CFG_KERNEL_ENTRY, pvh_start_addr);
760 fw_cfg_add_i32(fw_cfg, FW_CFG_KERNEL_ADDR, mh_load_addr);
761 fw_cfg_add_i32(fw_cfg, FW_CFG_KERNEL_SIZE, elf_kernel_size);
762
763 return true;
764}
765
703a548a
SL
766void x86_load_linux(X86MachineState *x86ms,
767 FWCfgState *fw_cfg,
768 int acpi_data_size,
f014c974 769 bool pvh_enabled)
549e984e 770{
f014c974 771 bool linuxboot_dma_enabled = X86_MACHINE_GET_CLASS(x86ms)->fwcfg_dma_enabled;
549e984e
SL
772 uint16_t protocol;
773 int setup_size, kernel_size, cmdline_size;
774 int dtb_size, setup_data_offset;
775 uint32_t initrd_max;
776 uint8_t header[8192], *setup, *kernel;
777 hwaddr real_addr, prot_addr, cmdline_addr, initrd_addr = 0;
778 FILE *f;
779 char *vmode;
703a548a 780 MachineState *machine = MACHINE(x86ms);
549e984e
SL
781 struct setup_data *setup_data;
782 const char *kernel_filename = machine->kernel_filename;
783 const char *initrd_filename = machine->initrd_filename;
784 const char *dtb_filename = machine->dtb;
785 const char *kernel_cmdline = machine->kernel_cmdline;
c0c2d319 786 SevKernelLoaderContext sev_load_ctx = {};
549e984e
SL
787
788 /* Align to 16 bytes as a paranoia measure */
789 cmdline_size = (strlen(kernel_cmdline) + 16) & ~15;
790
791 /* load the kernel header */
792 f = fopen(kernel_filename, "rb");
793 if (!f) {
794 fprintf(stderr, "qemu: could not open kernel file '%s': %s\n",
795 kernel_filename, strerror(errno));
796 exit(1);
797 }
798
799 kernel_size = get_file_size(f);
800 if (!kernel_size ||
801 fread(header, 1, MIN(ARRAY_SIZE(header), kernel_size), f) !=
802 MIN(ARRAY_SIZE(header), kernel_size)) {
803 fprintf(stderr, "qemu: could not load kernel '%s': %s\n",
804 kernel_filename, strerror(errno));
805 exit(1);
806 }
807
808 /* kernel protocol version */
809 if (ldl_p(header + 0x202) == 0x53726448) {
810 protocol = lduw_p(header + 0x206);
811 } else {
812 /*
813 * This could be a multiboot kernel. If it is, let's stop treating it
814 * like a Linux kernel.
815 * Note: some multiboot images could be in the ELF format (the same of
816 * PVH), so we try multiboot first since we check the multiboot magic
817 * header before to load it.
818 */
3ca8ce72 819 if (load_multiboot(x86ms, fw_cfg, f, kernel_filename, initrd_filename,
549e984e
SL
820 kernel_cmdline, kernel_size, header)) {
821 return;
822 }
823 /*
824 * Check if the file is an uncompressed kernel file (ELF) and load it,
825 * saving the PVH entry point used by the x86/HVM direct boot ABI.
826 * If load_elfboot() is successful, populate the fw_cfg info.
827 */
703a548a 828 if (pvh_enabled &&
549e984e
SL
829 load_elfboot(kernel_filename, kernel_size,
830 header, pvh_start_addr, fw_cfg)) {
831 fclose(f);
832
833 fw_cfg_add_i32(fw_cfg, FW_CFG_CMDLINE_SIZE,
834 strlen(kernel_cmdline) + 1);
835 fw_cfg_add_string(fw_cfg, FW_CFG_CMDLINE_DATA, kernel_cmdline);
836
837 fw_cfg_add_i32(fw_cfg, FW_CFG_SETUP_SIZE, sizeof(header));
838 fw_cfg_add_bytes(fw_cfg, FW_CFG_SETUP_DATA,
839 header, sizeof(header));
840
841 /* load initrd */
842 if (initrd_filename) {
843 GMappedFile *mapped_file;
844 gsize initrd_size;
845 gchar *initrd_data;
846 GError *gerr = NULL;
847
848 mapped_file = g_mapped_file_new(initrd_filename, false, &gerr);
849 if (!mapped_file) {
850 fprintf(stderr, "qemu: error reading initrd %s: %s\n",
851 initrd_filename, gerr->message);
852 exit(1);
853 }
f0bb276b 854 x86ms->initrd_mapped_file = mapped_file;
549e984e
SL
855
856 initrd_data = g_mapped_file_get_contents(mapped_file);
857 initrd_size = g_mapped_file_get_length(mapped_file);
703a548a 858 initrd_max = x86ms->below_4g_mem_size - acpi_data_size - 1;
549e984e
SL
859 if (initrd_size >= initrd_max) {
860 fprintf(stderr, "qemu: initrd is too large, cannot support."
861 "(max: %"PRIu32", need %"PRId64")\n",
862 initrd_max, (uint64_t)initrd_size);
863 exit(1);
864 }
865
866 initrd_addr = (initrd_max - initrd_size) & ~4095;
867
868 fw_cfg_add_i32(fw_cfg, FW_CFG_INITRD_ADDR, initrd_addr);
869 fw_cfg_add_i32(fw_cfg, FW_CFG_INITRD_SIZE, initrd_size);
870 fw_cfg_add_bytes(fw_cfg, FW_CFG_INITRD_DATA, initrd_data,
871 initrd_size);
872 }
873
874 option_rom[nb_option_roms].bootindex = 0;
875 option_rom[nb_option_roms].name = "pvh.bin";
876 nb_option_roms++;
877
878 return;
879 }
880 protocol = 0;
881 }
882
883 if (protocol < 0x200 || !(header[0x211] & 0x01)) {
884 /* Low kernel */
885 real_addr = 0x90000;
886 cmdline_addr = 0x9a000 - cmdline_size;
887 prot_addr = 0x10000;
888 } else if (protocol < 0x202) {
889 /* High but ancient kernel */
890 real_addr = 0x90000;
891 cmdline_addr = 0x9a000 - cmdline_size;
892 prot_addr = 0x100000;
893 } else {
894 /* High and recent kernel */
895 real_addr = 0x10000;
896 cmdline_addr = 0x20000;
897 prot_addr = 0x100000;
898 }
899
900 /* highest address for loading the initrd */
901 if (protocol >= 0x20c &&
902 lduw_p(header + 0x236) & XLF_CAN_BE_LOADED_ABOVE_4G) {
903 /*
904 * Linux has supported initrd up to 4 GB for a very long time (2007,
905 * long before XLF_CAN_BE_LOADED_ABOVE_4G which was added in 2013),
906 * though it only sets initrd_max to 2 GB to "work around bootloader
907 * bugs". Luckily, QEMU firmware(which does something like bootloader)
908 * has supported this.
909 *
910 * It's believed that if XLF_CAN_BE_LOADED_ABOVE_4G is set, initrd can
911 * be loaded into any address.
912 *
913 * In addition, initrd_max is uint32_t simply because QEMU doesn't
914 * support the 64-bit boot protocol (specifically the ext_ramdisk_image
915 * field).
916 *
917 * Therefore here just limit initrd_max to UINT32_MAX simply as well.
918 */
919 initrd_max = UINT32_MAX;
920 } else if (protocol >= 0x203) {
921 initrd_max = ldl_p(header + 0x22c);
922 } else {
923 initrd_max = 0x37ffffff;
924 }
925
703a548a
SL
926 if (initrd_max >= x86ms->below_4g_mem_size - acpi_data_size) {
927 initrd_max = x86ms->below_4g_mem_size - acpi_data_size - 1;
549e984e
SL
928 }
929
930 fw_cfg_add_i32(fw_cfg, FW_CFG_CMDLINE_ADDR, cmdline_addr);
931 fw_cfg_add_i32(fw_cfg, FW_CFG_CMDLINE_SIZE, strlen(kernel_cmdline) + 1);
932 fw_cfg_add_string(fw_cfg, FW_CFG_CMDLINE_DATA, kernel_cmdline);
c0c2d319
DM
933 sev_load_ctx.cmdline_data = (char *)kernel_cmdline;
934 sev_load_ctx.cmdline_size = strlen(kernel_cmdline) + 1;
549e984e
SL
935
936 if (protocol >= 0x202) {
937 stl_p(header + 0x228, cmdline_addr);
938 } else {
939 stw_p(header + 0x20, 0xA33F);
940 stw_p(header + 0x22, cmdline_addr - real_addr);
941 }
942
943 /* handle vga= parameter */
944 vmode = strstr(kernel_cmdline, "vga=");
945 if (vmode) {
946 unsigned int video_mode;
a88c40f0 947 const char *end;
549e984e
SL
948 int ret;
949 /* skip "vga=" */
950 vmode += 4;
951 if (!strncmp(vmode, "normal", 6)) {
952 video_mode = 0xffff;
953 } else if (!strncmp(vmode, "ext", 3)) {
954 video_mode = 0xfffe;
955 } else if (!strncmp(vmode, "ask", 3)) {
956 video_mode = 0xfffd;
957 } else {
a88c40f0
PW
958 ret = qemu_strtoui(vmode, &end, 0, &video_mode);
959 if (ret != 0 || (*end && *end != ' ')) {
960 fprintf(stderr, "qemu: invalid 'vga=' kernel parameter.\n");
549e984e
SL
961 exit(1);
962 }
963 }
964 stw_p(header + 0x1fa, video_mode);
965 }
966
967 /* loader type */
968 /*
969 * High nybble = B reserved for QEMU; low nybble is revision number.
970 * If this code is substantially changed, you may want to consider
971 * incrementing the revision.
972 */
973 if (protocol >= 0x200) {
974 header[0x210] = 0xB0;
975 }
976 /* heap */
977 if (protocol >= 0x201) {
978 header[0x211] |= 0x80; /* CAN_USE_HEAP */
979 stw_p(header + 0x224, cmdline_addr - real_addr - 0x200);
980 }
981
982 /* load initrd */
983 if (initrd_filename) {
984 GMappedFile *mapped_file;
985 gsize initrd_size;
986 gchar *initrd_data;
987 GError *gerr = NULL;
988
989 if (protocol < 0x200) {
990 fprintf(stderr, "qemu: linux kernel too old to load a ram disk\n");
991 exit(1);
992 }
993
994 mapped_file = g_mapped_file_new(initrd_filename, false, &gerr);
995 if (!mapped_file) {
996 fprintf(stderr, "qemu: error reading initrd %s: %s\n",
997 initrd_filename, gerr->message);
998 exit(1);
999 }
f0bb276b 1000 x86ms->initrd_mapped_file = mapped_file;
549e984e
SL
1001
1002 initrd_data = g_mapped_file_get_contents(mapped_file);
1003 initrd_size = g_mapped_file_get_length(mapped_file);
1004 if (initrd_size >= initrd_max) {
1005 fprintf(stderr, "qemu: initrd is too large, cannot support."
1006 "(max: %"PRIu32", need %"PRId64")\n",
1007 initrd_max, (uint64_t)initrd_size);
1008 exit(1);
1009 }
1010
1011 initrd_addr = (initrd_max - initrd_size) & ~4095;
1012
1013 fw_cfg_add_i32(fw_cfg, FW_CFG_INITRD_ADDR, initrd_addr);
1014 fw_cfg_add_i32(fw_cfg, FW_CFG_INITRD_SIZE, initrd_size);
1015 fw_cfg_add_bytes(fw_cfg, FW_CFG_INITRD_DATA, initrd_data, initrd_size);
c0c2d319
DM
1016 sev_load_ctx.initrd_data = initrd_data;
1017 sev_load_ctx.initrd_size = initrd_size;
549e984e
SL
1018
1019 stl_p(header + 0x218, initrd_addr);
1020 stl_p(header + 0x21c, initrd_size);
1021 }
1022
1023 /* load kernel and setup */
1024 setup_size = header[0x1f1];
1025 if (setup_size == 0) {
1026 setup_size = 4;
1027 }
1028 setup_size = (setup_size + 1) * 512;
1029 if (setup_size > kernel_size) {
1030 fprintf(stderr, "qemu: invalid kernel header\n");
1031 exit(1);
1032 }
1033 kernel_size -= setup_size;
1034
1035 setup = g_malloc(setup_size);
1036 kernel = g_malloc(kernel_size);
1037 fseek(f, 0, SEEK_SET);
1038 if (fread(setup, 1, setup_size, f) != setup_size) {
1039 fprintf(stderr, "fread() failed\n");
1040 exit(1);
1041 }
1042 if (fread(kernel, 1, kernel_size, f) != kernel_size) {
1043 fprintf(stderr, "fread() failed\n");
1044 exit(1);
1045 }
1046 fclose(f);
1047
1048 /* append dtb to kernel */
1049 if (dtb_filename) {
1050 if (protocol < 0x209) {
1051 fprintf(stderr, "qemu: Linux kernel too old to load a dtb\n");
1052 exit(1);
1053 }
1054
1055 dtb_size = get_image_size(dtb_filename);
1056 if (dtb_size <= 0) {
1057 fprintf(stderr, "qemu: error reading dtb %s: %s\n",
1058 dtb_filename, strerror(errno));
1059 exit(1);
1060 }
1061
1062 setup_data_offset = QEMU_ALIGN_UP(kernel_size, 16);
1063 kernel_size = setup_data_offset + sizeof(struct setup_data) + dtb_size;
1064 kernel = g_realloc(kernel, kernel_size);
1065
1066 stq_p(header + 0x250, prot_addr + setup_data_offset);
1067
1068 setup_data = (struct setup_data *)(kernel + setup_data_offset);
1069 setup_data->next = 0;
1070 setup_data->type = cpu_to_le32(SETUP_DTB);
1071 setup_data->len = cpu_to_le32(dtb_size);
1072
1073 load_image_size(dtb_filename, setup_data->data, dtb_size);
1074 }
1075
c0c2d319
DM
1076 /*
1077 * If we're starting an encrypted VM, it will be OVMF based, which uses the
1078 * efi stub for booting and doesn't require any values to be placed in the
1079 * kernel header. We therefore don't update the header so the hash of the
1080 * kernel on the other side of the fw_cfg interface matches the hash of the
1081 * file the user passed in.
1082 */
1083 if (!sev_enabled()) {
1084 memcpy(setup, header, MIN(sizeof(header), setup_size));
1085 }
549e984e
SL
1086
1087 fw_cfg_add_i32(fw_cfg, FW_CFG_KERNEL_ADDR, prot_addr);
1088 fw_cfg_add_i32(fw_cfg, FW_CFG_KERNEL_SIZE, kernel_size);
1089 fw_cfg_add_bytes(fw_cfg, FW_CFG_KERNEL_DATA, kernel, kernel_size);
c0c2d319
DM
1090 sev_load_ctx.kernel_data = (char *)kernel;
1091 sev_load_ctx.kernel_size = kernel_size;
549e984e
SL
1092
1093 fw_cfg_add_i32(fw_cfg, FW_CFG_SETUP_ADDR, real_addr);
1094 fw_cfg_add_i32(fw_cfg, FW_CFG_SETUP_SIZE, setup_size);
1095 fw_cfg_add_bytes(fw_cfg, FW_CFG_SETUP_DATA, setup, setup_size);
c0c2d319
DM
1096 sev_load_ctx.setup_data = (char *)setup;
1097 sev_load_ctx.setup_size = setup_size;
1098
1099 if (sev_enabled()) {
1100 sev_add_kernel_loader_hashes(&sev_load_ctx, &error_fatal);
1101 }
549e984e
SL
1102
1103 option_rom[nb_option_roms].bootindex = 0;
1104 option_rom[nb_option_roms].name = "linuxboot.bin";
703a548a 1105 if (linuxboot_dma_enabled && fw_cfg_dma_enabled(fw_cfg)) {
549e984e
SL
1106 option_rom[nb_option_roms].name = "linuxboot_dma.bin";
1107 }
1108 nb_option_roms++;
1109}
1110
7d435078
PB
1111void x86_bios_rom_init(MachineState *ms, const char *default_firmware,
1112 MemoryRegion *rom_memory, bool isapc_ram_fw)
549e984e 1113{
7d435078 1114 const char *bios_name;
549e984e
SL
1115 char *filename;
1116 MemoryRegion *bios, *isa_bios;
1117 int bios_size, isa_bios_size;
1118 int ret;
1119
1120 /* BIOS load */
7d435078 1121 bios_name = ms->firmware ?: default_firmware;
549e984e
SL
1122 filename = qemu_find_file(QEMU_FILE_TYPE_BIOS, bios_name);
1123 if (filename) {
1124 bios_size = get_image_size(filename);
1125 } else {
1126 bios_size = -1;
1127 }
1128 if (bios_size <= 0 ||
1129 (bios_size % 65536) != 0) {
1130 goto bios_error;
1131 }
1132 bios = g_malloc(sizeof(*bios));
1133 memory_region_init_ram(bios, NULL, "pc.bios", bios_size, &error_fatal);
a8152c4e
GH
1134 if (sev_enabled()) {
1135 /*
1136 * The concept of a "reset" simply doesn't exist for
1137 * confidential computing guests, we have to destroy and
1138 * re-launch them instead. So there is no need to register
1139 * the firmware as rom to properly re-initialize on reset.
1140 * Just go for a straight file load instead.
1141 */
1142 void *ptr = memory_region_get_ram_ptr(bios);
1143 load_image_size(filename, ptr, bios_size);
1144 x86_firmware_configure(ptr, bios_size);
1145 } else {
1146 if (!isapc_ram_fw) {
1147 memory_region_set_readonly(bios, true);
1148 }
1149 ret = rom_add_file_fixed(bios_name, (uint32_t)(-bios_size), -1);
1150 if (ret != 0) {
1151 goto bios_error;
1152 }
549e984e
SL
1153 }
1154 g_free(filename);
1155
1156 /* map the last 128KB of the BIOS in ISA space */
1157 isa_bios_size = MIN(bios_size, 128 * KiB);
1158 isa_bios = g_malloc(sizeof(*isa_bios));
1159 memory_region_init_alias(isa_bios, NULL, "isa-bios", bios,
1160 bios_size - isa_bios_size, isa_bios_size);
1161 memory_region_add_subregion_overlap(rom_memory,
1162 0x100000 - isa_bios_size,
1163 isa_bios,
1164 1);
1165 if (!isapc_ram_fw) {
1166 memory_region_set_readonly(isa_bios, true);
1167 }
1168
1169 /* map all the bios at the top of memory */
1170 memory_region_add_subregion(rom_memory,
1171 (uint32_t)(-bios_size),
1172 bios);
2aa6a39b
GH
1173 return;
1174
1175bios_error:
1176 fprintf(stderr, "qemu: could not load PC BIOS '%s'\n", bios_name);
1177 exit(1);
549e984e 1178}
f0bb276b 1179
9927a632 1180bool x86_machine_is_smm_enabled(const X86MachineState *x86ms)
ed9e923c
PB
1181{
1182 bool smm_available = false;
1183
1184 if (x86ms->smm == ON_OFF_AUTO_OFF) {
1185 return false;
1186 }
1187
1188 if (tcg_enabled() || qtest_enabled()) {
1189 smm_available = true;
1190 } else if (kvm_enabled()) {
1191 smm_available = kvm_has_smm();
1192 }
1193
1194 if (smm_available) {
1195 return true;
1196 }
1197
1198 if (x86ms->smm == ON_OFF_AUTO_ON) {
1199 error_report("System Management Mode not supported by this hypervisor.");
1200 exit(1);
1201 }
1202 return false;
1203}
1204
1205static void x86_machine_get_smm(Object *obj, Visitor *v, const char *name,
1206 void *opaque, Error **errp)
1207{
1208 X86MachineState *x86ms = X86_MACHINE(obj);
1209 OnOffAuto smm = x86ms->smm;
1210
1211 visit_type_OnOffAuto(v, name, &smm, errp);
1212}
1213
1214static void x86_machine_set_smm(Object *obj, Visitor *v, const char *name,
1215 void *opaque, Error **errp)
1216{
1217 X86MachineState *x86ms = X86_MACHINE(obj);
1218
1219 visit_type_OnOffAuto(v, name, &x86ms->smm, errp);
1220}
1221
9927a632 1222bool x86_machine_is_acpi_enabled(const X86MachineState *x86ms)
17e89077
GH
1223{
1224 if (x86ms->acpi == ON_OFF_AUTO_OFF) {
1225 return false;
1226 }
1227 return true;
1228}
1229
1230static void x86_machine_get_acpi(Object *obj, Visitor *v, const char *name,
1231 void *opaque, Error **errp)
1232{
1233 X86MachineState *x86ms = X86_MACHINE(obj);
1234 OnOffAuto acpi = x86ms->acpi;
1235
1236 visit_type_OnOffAuto(v, name, &acpi, errp);
1237}
1238
1239static void x86_machine_set_acpi(Object *obj, Visitor *v, const char *name,
1240 void *opaque, Error **errp)
1241{
1242 X86MachineState *x86ms = X86_MACHINE(obj);
1243
1244 visit_type_OnOffAuto(v, name, &x86ms->acpi, errp);
1245}
1246
9dee7e51
XL
1247static void x86_machine_get_pit(Object *obj, Visitor *v, const char *name,
1248 void *opaque, Error **errp)
1249{
1250 X86MachineState *x86ms = X86_MACHINE(obj);
1251 OnOffAuto pit = x86ms->pit;
1252
1253 visit_type_OnOffAuto(v, name, &pit, errp);
1254}
1255
1256static void x86_machine_set_pit(Object *obj, Visitor *v, const char *name,
1257 void *opaque, Error **errp)
1258{
1259 X86MachineState *x86ms = X86_MACHINE(obj);;
1260
1261 visit_type_OnOffAuto(v, name, &x86ms->pit, errp);
1262}
1263
c300bbe8
XL
1264static void x86_machine_get_pic(Object *obj, Visitor *v, const char *name,
1265 void *opaque, Error **errp)
1266{
1267 X86MachineState *x86ms = X86_MACHINE(obj);
1268 OnOffAuto pic = x86ms->pic;
1269
1270 visit_type_OnOffAuto(v, name, &pic, errp);
1271}
1272
1273static void x86_machine_set_pic(Object *obj, Visitor *v, const char *name,
1274 void *opaque, Error **errp)
1275{
1276 X86MachineState *x86ms = X86_MACHINE(obj);
1277
1278 visit_type_OnOffAuto(v, name, &x86ms->pic, errp);
1279}
1280
d07b2286
MP
1281static char *x86_machine_get_oem_id(Object *obj, Error **errp)
1282{
1283 X86MachineState *x86ms = X86_MACHINE(obj);
1284
1285 return g_strdup(x86ms->oem_id);
1286}
1287
1288static void x86_machine_set_oem_id(Object *obj, const char *value, Error **errp)
1289{
1290 X86MachineState *x86ms = X86_MACHINE(obj);
1291 size_t len = strlen(value);
1292
1293 if (len > 6) {
1294 error_setg(errp,
1295 "User specified "X86_MACHINE_OEM_ID" value is bigger than "
1296 "6 bytes in size");
1297 return;
1298 }
1299
1300 strncpy(x86ms->oem_id, value, 6);
1301}
1302
1303static char *x86_machine_get_oem_table_id(Object *obj, Error **errp)
1304{
1305 X86MachineState *x86ms = X86_MACHINE(obj);
1306
1307 return g_strdup(x86ms->oem_table_id);
1308}
1309
1310static void x86_machine_set_oem_table_id(Object *obj, const char *value,
1311 Error **errp)
1312{
1313 X86MachineState *x86ms = X86_MACHINE(obj);
1314 size_t len = strlen(value);
1315
1316 if (len > 8) {
1317 error_setg(errp,
1318 "User specified "X86_MACHINE_OEM_TABLE_ID
1319 " value is bigger than "
1320 "8 bytes in size");
1321 return;
1322 }
1323 strncpy(x86ms->oem_table_id, value, 8);
1324}
1325
035d1ef2
CQ
1326static void x86_machine_get_bus_lock_ratelimit(Object *obj, Visitor *v,
1327 const char *name, void *opaque, Error **errp)
1328{
1329 X86MachineState *x86ms = X86_MACHINE(obj);
1330 uint64_t bus_lock_ratelimit = x86ms->bus_lock_ratelimit;
1331
1332 visit_type_uint64(v, name, &bus_lock_ratelimit, errp);
1333}
1334
1335static void x86_machine_set_bus_lock_ratelimit(Object *obj, Visitor *v,
1336 const char *name, void *opaque, Error **errp)
1337{
1338 X86MachineState *x86ms = X86_MACHINE(obj);
1339
1340 visit_type_uint64(v, name, &x86ms->bus_lock_ratelimit, errp);
1341}
1342
dfce81f1
SC
1343static void machine_get_sgx_epc(Object *obj, Visitor *v, const char *name,
1344 void *opaque, Error **errp)
1345{
1346 X86MachineState *x86ms = X86_MACHINE(obj);
1347 SgxEPCList *list = x86ms->sgx_epc_list;
1348
1349 visit_type_SgxEPCList(v, name, &list, errp);
1350}
1351
1352static void machine_set_sgx_epc(Object *obj, Visitor *v, const char *name,
1353 void *opaque, Error **errp)
1354{
1355 X86MachineState *x86ms = X86_MACHINE(obj);
1356 SgxEPCList *list;
1357
1358 list = x86ms->sgx_epc_list;
1359 visit_type_SgxEPCList(v, name, &x86ms->sgx_epc_list, errp);
1360
1361 qapi_free_SgxEPCList(list);
1362}
1363
f0bb276b
PB
1364static void x86_machine_initfn(Object *obj)
1365{
1366 X86MachineState *x86ms = X86_MACHINE(obj);
1367
ed9e923c 1368 x86ms->smm = ON_OFF_AUTO_AUTO;
17e89077 1369 x86ms->acpi = ON_OFF_AUTO_AUTO;
9dee7e51 1370 x86ms->pit = ON_OFF_AUTO_AUTO;
c300bbe8 1371 x86ms->pic = ON_OFF_AUTO_AUTO;
1b2802c4 1372 x86ms->pci_irq_mask = ACPI_BUILD_PCI_IRQS;
d07b2286
MP
1373 x86ms->oem_id = g_strndup(ACPI_BUILD_APPNAME6, 6);
1374 x86ms->oem_table_id = g_strndup(ACPI_BUILD_APPNAME8, 8);
035d1ef2 1375 x86ms->bus_lock_ratelimit = 0;
f0bb276b
PB
1376}
1377
1378static void x86_machine_class_init(ObjectClass *oc, void *data)
1379{
1380 MachineClass *mc = MACHINE_CLASS(oc);
1381 X86MachineClass *x86mc = X86_MACHINE_CLASS(oc);
1382 NMIClass *nc = NMI_CLASS(oc);
1383
1384 mc->cpu_index_to_instance_props = x86_cpu_index_to_props;
1385 mc->get_default_cpu_node_id = x86_get_default_cpu_node_id;
1386 mc->possible_cpu_arch_ids = x86_possible_cpu_arch_ids;
2f34ebf2 1387 x86mc->save_tsc_khz = true;
f014c974 1388 x86mc->fwcfg_dma_enabled = true;
f0bb276b
PB
1389 nc->nmi_monitor_handler = x86_nmi;
1390
ed9e923c
PB
1391 object_class_property_add(oc, X86_MACHINE_SMM, "OnOffAuto",
1392 x86_machine_get_smm, x86_machine_set_smm,
d2623129 1393 NULL, NULL);
ed9e923c 1394 object_class_property_set_description(oc, X86_MACHINE_SMM,
7eecec7d 1395 "Enable SMM");
17e89077
GH
1396
1397 object_class_property_add(oc, X86_MACHINE_ACPI, "OnOffAuto",
1398 x86_machine_get_acpi, x86_machine_set_acpi,
d2623129 1399 NULL, NULL);
17e89077 1400 object_class_property_set_description(oc, X86_MACHINE_ACPI,
7eecec7d 1401 "Enable ACPI");
d07b2286 1402
9dee7e51
XL
1403 object_class_property_add(oc, X86_MACHINE_PIT, "OnOffAuto",
1404 x86_machine_get_pit,
1405 x86_machine_set_pit,
1406 NULL, NULL);
1407 object_class_property_set_description(oc, X86_MACHINE_PIT,
1408 "Enable i8254 PIT");
1409
c300bbe8
XL
1410 object_class_property_add(oc, X86_MACHINE_PIC, "OnOffAuto",
1411 x86_machine_get_pic,
1412 x86_machine_set_pic,
1413 NULL, NULL);
1414 object_class_property_set_description(oc, X86_MACHINE_PIC,
1415 "Enable i8259 PIC");
1416
d07b2286
MP
1417 object_class_property_add_str(oc, X86_MACHINE_OEM_ID,
1418 x86_machine_get_oem_id,
1419 x86_machine_set_oem_id);
1420 object_class_property_set_description(oc, X86_MACHINE_OEM_ID,
1421 "Override the default value of field OEMID "
1422 "in ACPI table header."
1423 "The string may be up to 6 bytes in size");
1424
1425
1426 object_class_property_add_str(oc, X86_MACHINE_OEM_TABLE_ID,
1427 x86_machine_get_oem_table_id,
1428 x86_machine_set_oem_table_id);
1429 object_class_property_set_description(oc, X86_MACHINE_OEM_TABLE_ID,
1430 "Override the default value of field OEM Table ID "
1431 "in ACPI table header."
1432 "The string may be up to 8 bytes in size");
035d1ef2
CQ
1433
1434 object_class_property_add(oc, X86_MACHINE_BUS_LOCK_RATELIMIT, "uint64_t",
1435 x86_machine_get_bus_lock_ratelimit,
1436 x86_machine_set_bus_lock_ratelimit, NULL, NULL);
1437 object_class_property_set_description(oc, X86_MACHINE_BUS_LOCK_RATELIMIT,
1438 "Set the ratelimit for the bus locks acquired in VMs");
dfce81f1
SC
1439
1440 object_class_property_add(oc, "sgx-epc", "SgxEPC",
1441 machine_get_sgx_epc, machine_set_sgx_epc,
1442 NULL, NULL);
1443 object_class_property_set_description(oc, "sgx-epc",
1444 "SGX EPC device");
f0bb276b
PB
1445}
1446
1447static const TypeInfo x86_machine_info = {
1448 .name = TYPE_X86_MACHINE,
1449 .parent = TYPE_MACHINE,
1450 .abstract = true,
1451 .instance_size = sizeof(X86MachineState),
1452 .instance_init = x86_machine_initfn,
1453 .class_size = sizeof(X86MachineClass),
1454 .class_init = x86_machine_class_init,
1455 .interfaces = (InterfaceInfo[]) {
1456 { TYPE_NMI },
1457 { }
1458 },
1459};
1460
1461static void x86_machine_register_types(void)
1462{
1463 type_register_static(&x86_machine_info);
1464}
1465
1466type_init(x86_machine_register_types)