]> git.proxmox.com Git - mirror_qemu.git/blame - hw/core/machine.c
hw/arm/virt: Disable pl011 clock migration if needed
[mirror_qemu.git] / hw / core / machine.c
CommitLineData
36d20cb2
MA
1/*
2 * QEMU Machine
3 *
4 * Copyright (C) 2014 Red Hat Inc
5 *
6 * Authors:
7 * Marcel Apfelbaum <marcel.a@redhat.com>
8 *
9 * This work is licensed under the terms of the GNU GPL, version 2 or later.
10 * See the COPYING file in the top-level directory.
11 */
12
18c86e2b 13#include "qemu/osdep.h"
6f479566
LX
14#include "qemu/option.h"
15#include "qapi/qmp/qerror.h"
16#include "sysemu/replay.h"
fc6b3cf9 17#include "qemu/units.h"
36d20cb2 18#include "hw/boards.h"
f66dc873 19#include "hw/loader.h"
da34e65c 20#include "qapi/error.h"
9af23989 21#include "qapi/qapi-visit-common.h"
6b1b1440 22#include "qapi/visitor.h"
33cd52b5 23#include "hw/sysbus.h"
f66dc873 24#include "sysemu/cpus.h"
33cd52b5 25#include "sysemu/sysemu.h"
f66dc873
PB
26#include "sysemu/reset.h"
27#include "sysemu/runstate.h"
3bfe5716 28#include "sysemu/numa.h"
33cd52b5 29#include "qemu/error-report.h"
c6ff347c 30#include "sysemu/qtest.h"
edc24ccd 31#include "hw/pci/pci.h"
f6a0d06b 32#include "hw/mem/nvdimm.h"
f66dc873 33#include "migration/global_state.h"
82b911aa 34#include "migration/vmstate.h"
e0292d7c 35#include "exec/confidential-guest-support.h"
9f88a7a3
DG
36#include "hw/virtio/virtio.h"
37#include "hw/virtio/virtio-pci.h"
6b1b1440 38
6be8cf56
IY
39GlobalProperty hw_compat_5_2[] = {
40 { "ICH9-LPC", "smm-compat", "on"},
41 { "PIIX4_PM", "smm-compat", "on"},
fb0b154c 42 { "virtio-blk-device", "report-discard-granularity", "off" },
51a81a21 43 { "virtio-net-pci", "vectors", "3"},
6be8cf56 44};
576a00bd
CH
45const size_t hw_compat_5_2_len = G_N_ELEMENTS(hw_compat_5_2);
46
6a558822
SH
47GlobalProperty hw_compat_5_1[] = {
48 { "vhost-scsi", "num_queues", "1"},
a4eef071 49 { "vhost-user-blk", "num-queues", "1"},
6a558822 50 { "vhost-user-scsi", "num_queues", "1"},
9445e1e1 51 { "virtio-blk-device", "num-queues", "1"},
6a558822 52 { "virtio-scsi-device", "num_queues", "1"},
6eb7a071 53 { "nvme", "use-intel-id", "on"},
b1b0393c 54 { "pvpanic", "events", "1"}, /* PVPANIC_PANICKED */
e6fa978d 55 { "pl011", "migrate-clk", "off" },
6a558822 56};
3ff3c5d3
CH
57const size_t hw_compat_5_1_len = G_N_ELEMENTS(hw_compat_5_1);
58
7483cbba 59GlobalProperty hw_compat_5_0[] = {
2ebc2121 60 { "pci-host-bridge", "x-config-reg-migration-enabled", "off" },
7483cbba 61 { "virtio-balloon-device", "page-poison", "false" },
f983ff95
PB
62 { "vmport", "x-read-set-eax", "off" },
63 { "vmport", "x-signal-unsupported-cmd", "off" },
64 { "vmport", "x-report-vmx-type", "off" },
65 { "vmport", "x-cmds-v2", "off" },
d55f5182 66 { "virtio-device", "x-disable-legacy-check", "true" },
7483cbba 67};
541aaa1d
CH
68const size_t hw_compat_5_0_len = G_N_ELEMENTS(hw_compat_5_0);
69
5f258577 70GlobalProperty hw_compat_4_2[] = {
c9b7d9ec
DP
71 { "virtio-blk-device", "queue-size", "128"},
72 { "virtio-scsi-device", "virtqueue_size", "128"},
5f258577 73 { "virtio-blk-device", "x-enable-wce-if-config-wce", "off" },
1bf8a989
DP
74 { "virtio-blk-device", "seg-max-adjust", "off"},
75 { "virtio-scsi-device", "seg_max_adjust", "off"},
76 { "vhost-blk-device", "seg_max_adjust", "off"},
7bacaf5f 77 { "usb-host", "suppress-remote-wake", "off" },
32187f3d 78 { "usb-redir", "suppress-remote-wake", "off" },
ed71c09f
GH
79 { "qxl", "revision", "4" },
80 { "qxl-vga", "revision", "4" },
394f0f72 81 { "fw_cfg", "acpi-mr-restore", "false" },
c126b4c5 82 { "virtio-device", "use-disabled-flag", "false" },
5f258577
EY
83};
84const size_t hw_compat_4_2_len = G_N_ELEMENTS(hw_compat_4_2);
85
eb1556c4
JS
86GlobalProperty hw_compat_4_1[] = {
87 { "virtio-pci", "x-pcie-flr-init", "off" },
88};
9aec2e52
CH
89const size_t hw_compat_4_1_len = G_N_ELEMENTS(hw_compat_4_1);
90
8e8cbed0 91GlobalProperty hw_compat_4_0[] = {
0a719662
GH
92 { "VGA", "edid", "false" },
93 { "secondary-vga", "edid", "false" },
94 { "bochs-display", "edid", "false" },
95 { "virtio-vga", "edid", "false" },
02501fc3 96 { "virtio-gpu-device", "edid", "false" },
e57f2c31 97 { "virtio-device", "use-started", "false" },
2bbadb08 98 { "virtio-balloon-device", "qemu-4-0-config-size", "true" },
032cfe6a 99 { "pl031", "migrate-tick-offset", "false" },
0a719662 100};
9bf2650b
CH
101const size_t hw_compat_4_0_len = G_N_ELEMENTS(hw_compat_4_0);
102
abd93cc7 103GlobalProperty hw_compat_3_1[] = {
6c36bddf
EH
104 { "pcie-root-port", "x-speed", "2_5" },
105 { "pcie-root-port", "x-width", "1" },
106 { "memory-backend-file", "x-use-canonical-path-for-ramblock-id", "true" },
107 { "memory-backend-memfd", "x-use-canonical-path-for-ramblock-id", "true" },
b6148757
MAL
108 { "tpm-crb", "ppi", "false" },
109 { "tpm-tis", "ppi", "false" },
b63e1050
GH
110 { "usb-kbd", "serial", "42" },
111 { "usb-mouse", "serial", "42" },
442bac16 112 { "usb-tablet", "serial", "42" },
5c81161f
SG
113 { "virtio-blk-device", "discard", "false" },
114 { "virtio-blk-device", "write-zeroes", "false" },
2bbadb08 115 { "virtio-balloon-device", "qemu-4-0-config-size", "false" },
c8557f1b 116 { "pcie-root-port-base", "disable-acs", "true" }, /* Added in 4.1 */
abd93cc7
MAL
117};
118const size_t hw_compat_3_1_len = G_N_ELEMENTS(hw_compat_3_1);
119
ddb3235d
MAL
120GlobalProperty hw_compat_3_0[] = {};
121const size_t hw_compat_3_0_len = G_N_ELEMENTS(hw_compat_3_0);
122
0d47310b 123GlobalProperty hw_compat_2_12[] = {
6c36bddf
EH
124 { "migration", "decompress-error-check", "off" },
125 { "hda-audio", "use-timer", "false" },
126 { "cirrus-vga", "global-vmstate", "true" },
127 { "VGA", "global-vmstate", "true" },
128 { "vmware-svga", "global-vmstate", "true" },
129 { "qxl-vga", "global-vmstate", "true" },
0d47310b
MAL
130};
131const size_t hw_compat_2_12_len = G_N_ELEMENTS(hw_compat_2_12);
132
43df70a9 133GlobalProperty hw_compat_2_11[] = {
6c36bddf
EH
134 { "hpet", "hpet-offset-saved", "false" },
135 { "virtio-blk-pci", "vectors", "2" },
136 { "vhost-user-blk-pci", "vectors", "2" },
137 { "e1000", "migrate_tso_props", "off" },
43df70a9
MAL
138};
139const size_t hw_compat_2_11_len = G_N_ELEMENTS(hw_compat_2_11);
140
503224f4 141GlobalProperty hw_compat_2_10[] = {
6c36bddf
EH
142 { "virtio-mouse-device", "wheel-axis", "false" },
143 { "virtio-tablet-device", "wheel-axis", "false" },
503224f4
MAL
144};
145const size_t hw_compat_2_10_len = G_N_ELEMENTS(hw_compat_2_10);
146
3e803152 147GlobalProperty hw_compat_2_9[] = {
6c36bddf
EH
148 { "pci-bridge", "shpc", "off" },
149 { "intel-iommu", "pt", "off" },
150 { "virtio-net-device", "x-mtu-bypass-backend", "off" },
151 { "pcie-root-port", "x-migrate-msix", "false" },
3e803152
MAL
152};
153const size_t hw_compat_2_9_len = G_N_ELEMENTS(hw_compat_2_9);
154
edc24ccd 155GlobalProperty hw_compat_2_8[] = {
6c36bddf
EH
156 { "fw_cfg_mem", "x-file-slots", "0x10" },
157 { "fw_cfg_io", "x-file-slots", "0x10" },
158 { "pflash_cfi01", "old-multiple-chip-handling", "on" },
159 { "pci-bridge", "shpc", "on" },
160 { TYPE_PCI_DEVICE, "x-pcie-extcap-init", "off" },
161 { "virtio-pci", "x-pcie-deverr-init", "off" },
162 { "virtio-pci", "x-pcie-lnkctl-init", "off" },
163 { "virtio-pci", "x-pcie-pm-init", "off" },
164 { "cirrus-vga", "vgamem_mb", "8" },
165 { "isa-cirrus-vga", "vgamem_mb", "8" },
edc24ccd
MAL
166};
167const size_t hw_compat_2_8_len = G_N_ELEMENTS(hw_compat_2_8);
168
5a995064 169GlobalProperty hw_compat_2_7[] = {
6c36bddf
EH
170 { "virtio-pci", "page-per-vq", "on" },
171 { "virtio-serial-device", "emergency-write", "off" },
172 { "ioapic", "version", "0x11" },
173 { "intel-iommu", "x-buggy-eim", "true" },
174 { "virtio-pci", "x-ignore-backend-features", "on" },
5a995064
MAL
175};
176const size_t hw_compat_2_7_len = G_N_ELEMENTS(hw_compat_2_7);
177
ff8f261f 178GlobalProperty hw_compat_2_6[] = {
6c36bddf 179 { "virtio-mmio", "format_transport_address", "off" },
dd56040d
DDAG
180 /* Optional because not all virtio-pci devices support legacy mode */
181 { "virtio-pci", "disable-modern", "on", .optional = true },
182 { "virtio-pci", "disable-legacy", "off", .optional = true },
ff8f261f
MAL
183};
184const size_t hw_compat_2_6_len = G_N_ELEMENTS(hw_compat_2_6);
185
fe759610 186GlobalProperty hw_compat_2_5[] = {
6c36bddf
EH
187 { "isa-fdc", "fallback", "144" },
188 { "pvscsi", "x-old-pci-configuration", "on" },
189 { "pvscsi", "x-disable-pcie", "on" },
190 { "vmxnet3", "x-old-msi-offsets", "on" },
191 { "vmxnet3", "x-disable-pcie", "on" },
fe759610
MAL
192};
193const size_t hw_compat_2_5_len = G_N_ELEMENTS(hw_compat_2_5);
194
2f99b9c2 195GlobalProperty hw_compat_2_4[] = {
11a18c84
PMD
196 /* Optional because the 'scsi' property is Linux-only */
197 { "virtio-blk-device", "scsi", "true", .optional = true },
6c36bddf
EH
198 { "e1000", "extra_mac_registers", "off" },
199 { "virtio-pci", "x-disable-pcie", "on" },
200 { "virtio-pci", "migrate-extra", "off" },
201 { "fw_cfg_mem", "dma_enabled", "off" },
202 { "fw_cfg_io", "dma_enabled", "off" }
2f99b9c2
MAL
203};
204const size_t hw_compat_2_4_len = G_N_ELEMENTS(hw_compat_2_4);
205
8995dd90 206GlobalProperty hw_compat_2_3[] = {
6c36bddf
EH
207 { "virtio-blk-pci", "any_layout", "off" },
208 { "virtio-balloon-pci", "any_layout", "off" },
209 { "virtio-serial-pci", "any_layout", "off" },
210 { "virtio-9p-pci", "any_layout", "off" },
211 { "virtio-rng-pci", "any_layout", "off" },
212 { TYPE_PCI_DEVICE, "x-pcie-lnksta-dllla", "off" },
213 { "migration", "send-configuration", "off" },
214 { "migration", "send-section-footer", "off" },
215 { "migration", "store-global-state", "off" },
8995dd90
MAL
216};
217const size_t hw_compat_2_3_len = G_N_ELEMENTS(hw_compat_2_3);
218
1c30044e
MAL
219GlobalProperty hw_compat_2_2[] = {};
220const size_t hw_compat_2_2_len = G_N_ELEMENTS(hw_compat_2_2);
221
c4fc5695 222GlobalProperty hw_compat_2_1[] = {
6c36bddf
EH
223 { "intel-hda", "old_msi_addr", "on" },
224 { "VGA", "qemu-extended-regs", "off" },
225 { "secondary-vga", "qemu-extended-regs", "off" },
226 { "virtio-scsi-pci", "any_layout", "off" },
227 { "usb-mouse", "usb_version", "1" },
228 { "usb-kbd", "usb_version", "1" },
229 { "virtio-pci", "virtio-pci-bus-master-bug-migration", "on" },
c4fc5695
MAL
230};
231const size_t hw_compat_2_1_len = G_N_ELEMENTS(hw_compat_2_1);
232
c5e3c918
PB
233MachineState *current_machine;
234
6b1b1440
MA
235static char *machine_get_kernel(Object *obj, Error **errp)
236{
237 MachineState *ms = MACHINE(obj);
238
239 return g_strdup(ms->kernel_filename);
240}
241
242static void machine_set_kernel(Object *obj, const char *value, Error **errp)
243{
244 MachineState *ms = MACHINE(obj);
245
556068ee 246 g_free(ms->kernel_filename);
6b1b1440
MA
247 ms->kernel_filename = g_strdup(value);
248}
249
250static char *machine_get_initrd(Object *obj, Error **errp)
251{
252 MachineState *ms = MACHINE(obj);
253
254 return g_strdup(ms->initrd_filename);
255}
256
257static void machine_set_initrd(Object *obj, const char *value, Error **errp)
258{
259 MachineState *ms = MACHINE(obj);
260
556068ee 261 g_free(ms->initrd_filename);
6b1b1440
MA
262 ms->initrd_filename = g_strdup(value);
263}
264
265static char *machine_get_append(Object *obj, Error **errp)
266{
267 MachineState *ms = MACHINE(obj);
268
269 return g_strdup(ms->kernel_cmdline);
270}
271
272static void machine_set_append(Object *obj, const char *value, Error **errp)
273{
274 MachineState *ms = MACHINE(obj);
275
556068ee 276 g_free(ms->kernel_cmdline);
6b1b1440
MA
277 ms->kernel_cmdline = g_strdup(value);
278}
279
280static char *machine_get_dtb(Object *obj, Error **errp)
281{
282 MachineState *ms = MACHINE(obj);
283
284 return g_strdup(ms->dtb);
285}
286
287static void machine_set_dtb(Object *obj, const char *value, Error **errp)
288{
289 MachineState *ms = MACHINE(obj);
290
556068ee 291 g_free(ms->dtb);
6b1b1440
MA
292 ms->dtb = g_strdup(value);
293}
294
295static char *machine_get_dumpdtb(Object *obj, Error **errp)
296{
297 MachineState *ms = MACHINE(obj);
298
299 return g_strdup(ms->dumpdtb);
300}
301
302static void machine_set_dumpdtb(Object *obj, const char *value, Error **errp)
303{
304 MachineState *ms = MACHINE(obj);
305
556068ee 306 g_free(ms->dumpdtb);
6b1b1440
MA
307 ms->dumpdtb = g_strdup(value);
308}
309
310static void machine_get_phandle_start(Object *obj, Visitor *v,
d7bce999
EB
311 const char *name, void *opaque,
312 Error **errp)
6b1b1440
MA
313{
314 MachineState *ms = MACHINE(obj);
315 int64_t value = ms->phandle_start;
316
51e72bc1 317 visit_type_int(v, name, &value, errp);
6b1b1440
MA
318}
319
320static void machine_set_phandle_start(Object *obj, Visitor *v,
d7bce999
EB
321 const char *name, void *opaque,
322 Error **errp)
6b1b1440
MA
323{
324 MachineState *ms = MACHINE(obj);
6b1b1440
MA
325 int64_t value;
326
668f62ec 327 if (!visit_type_int(v, name, &value, errp)) {
6b1b1440
MA
328 return;
329 }
330
331 ms->phandle_start = value;
332}
333
334static char *machine_get_dt_compatible(Object *obj, Error **errp)
335{
336 MachineState *ms = MACHINE(obj);
337
338 return g_strdup(ms->dt_compatible);
339}
340
341static void machine_set_dt_compatible(Object *obj, const char *value, Error **errp)
342{
343 MachineState *ms = MACHINE(obj);
344
556068ee 345 g_free(ms->dt_compatible);
6b1b1440
MA
346 ms->dt_compatible = g_strdup(value);
347}
348
349static bool machine_get_dump_guest_core(Object *obj, Error **errp)
350{
351 MachineState *ms = MACHINE(obj);
352
353 return ms->dump_guest_core;
354}
355
356static void machine_set_dump_guest_core(Object *obj, bool value, Error **errp)
357{
358 MachineState *ms = MACHINE(obj);
359
360 ms->dump_guest_core = value;
361}
362
363static bool machine_get_mem_merge(Object *obj, Error **errp)
364{
365 MachineState *ms = MACHINE(obj);
366
367 return ms->mem_merge;
368}
369
370static void machine_set_mem_merge(Object *obj, bool value, Error **errp)
371{
372 MachineState *ms = MACHINE(obj);
373
374 ms->mem_merge = value;
375}
376
377static bool machine_get_usb(Object *obj, Error **errp)
378{
379 MachineState *ms = MACHINE(obj);
380
381 return ms->usb;
382}
383
384static void machine_set_usb(Object *obj, bool value, Error **errp)
385{
386 MachineState *ms = MACHINE(obj);
387
388 ms->usb = value;
c6e76503 389 ms->usb_disabled = !value;
6b1b1440
MA
390}
391
cfc58cf3
EH
392static bool machine_get_graphics(Object *obj, Error **errp)
393{
394 MachineState *ms = MACHINE(obj);
395
396 return ms->enable_graphics;
397}
398
399static void machine_set_graphics(Object *obj, bool value, Error **errp)
400{
401 MachineState *ms = MACHINE(obj);
402
403 ms->enable_graphics = value;
404}
405
6b1b1440
MA
406static char *machine_get_firmware(Object *obj, Error **errp)
407{
408 MachineState *ms = MACHINE(obj);
409
410 return g_strdup(ms->firmware);
411}
412
413static void machine_set_firmware(Object *obj, const char *value, Error **errp)
414{
415 MachineState *ms = MACHINE(obj);
416
556068ee 417 g_free(ms->firmware);
6b1b1440
MA
418 ms->firmware = g_strdup(value);
419}
420
9850c604
AG
421static void machine_set_suppress_vmdesc(Object *obj, bool value, Error **errp)
422{
423 MachineState *ms = MACHINE(obj);
424
425 ms->suppress_vmdesc = value;
426}
427
428static bool machine_get_suppress_vmdesc(Object *obj, Error **errp)
429{
430 MachineState *ms = MACHINE(obj);
431
432 return ms->suppress_vmdesc;
433}
434
db588194
BS
435static char *machine_get_memory_encryption(Object *obj, Error **errp)
436{
437 MachineState *ms = MACHINE(obj);
438
e0292d7c
DG
439 if (ms->cgs) {
440 return g_strdup(object_get_canonical_path_component(OBJECT(ms->cgs)));
441 }
442
443 return NULL;
db588194
BS
444}
445
446static void machine_set_memory_encryption(Object *obj, const char *value,
447 Error **errp)
448{
e0292d7c
DG
449 Object *cgs =
450 object_resolve_path_component(object_get_objects_root(), value);
451
452 if (!cgs) {
453 error_setg(errp, "No such memory encryption object '%s'", value);
454 return;
455 }
db588194 456
e0292d7c
DG
457 object_property_set_link(obj, "confidential-guest-support", cgs, errp);
458}
459
460static void machine_check_confidential_guest_support(const Object *obj,
461 const char *name,
462 Object *new_target,
463 Error **errp)
464{
465 /*
466 * So far the only constraint is that the target has the
467 * TYPE_CONFIDENTIAL_GUEST_SUPPORT interface, and that's checked
468 * by the QOM core
469 */
db588194
BS
470}
471
f6a0d06b
EA
472static bool machine_get_nvdimm(Object *obj, Error **errp)
473{
474 MachineState *ms = MACHINE(obj);
475
476 return ms->nvdimms_state->is_enabled;
477}
478
479static void machine_set_nvdimm(Object *obj, bool value, Error **errp)
480{
481 MachineState *ms = MACHINE(obj);
482
483 ms->nvdimms_state->is_enabled = value;
484}
485
244b3f44
TX
486static bool machine_get_hmat(Object *obj, Error **errp)
487{
488 MachineState *ms = MACHINE(obj);
489
490 return ms->numa_state->hmat_enabled;
491}
492
493static void machine_set_hmat(Object *obj, bool value, Error **errp)
494{
495 MachineState *ms = MACHINE(obj);
496
497 ms->numa_state->hmat_enabled = value;
498}
499
f6a0d06b
EA
500static char *machine_get_nvdimm_persistence(Object *obj, Error **errp)
501{
502 MachineState *ms = MACHINE(obj);
503
504 return g_strdup(ms->nvdimms_state->persistence_string);
505}
506
507static void machine_set_nvdimm_persistence(Object *obj, const char *value,
508 Error **errp)
509{
510 MachineState *ms = MACHINE(obj);
511 NVDIMMState *nvdimms_state = ms->nvdimms_state;
512
513 if (strcmp(value, "cpu") == 0) {
514 nvdimms_state->persistence = 3;
515 } else if (strcmp(value, "mem-ctrl") == 0) {
516 nvdimms_state->persistence = 2;
517 } else {
518 error_setg(errp, "-machine nvdimm-persistence=%s: unsupported option",
519 value);
520 return;
521 }
522
523 g_free(nvdimms_state->persistence_string);
524 nvdimms_state->persistence_string = g_strdup(value);
525}
526
0bd1909d 527void machine_class_allow_dynamic_sysbus_dev(MachineClass *mc, const char *type)
33cd52b5 528{
54aa3de7 529 QAPI_LIST_PREPEND(mc->allowed_dynamic_sysbus_devices, g_strdup(type));
33cd52b5
AG
530}
531
0bd1909d 532static void validate_sysbus_device(SysBusDevice *sbdev, void *opaque)
33cd52b5 533{
0bd1909d
EH
534 MachineState *machine = opaque;
535 MachineClass *mc = MACHINE_GET_CLASS(machine);
536 bool allowed = false;
537 strList *wl;
33cd52b5 538
0bd1909d
EH
539 for (wl = mc->allowed_dynamic_sysbus_devices;
540 !allowed && wl;
541 wl = wl->next) {
542 allowed |= !!object_dynamic_cast(OBJECT(sbdev), wl->value);
543 }
544
545 if (!allowed) {
546 error_report("Option '-device %s' cannot be handled by this machine",
547 object_class_get_name(object_get_class(OBJECT(sbdev))));
548 exit(1);
33cd52b5 549 }
0bd1909d
EH
550}
551
aa8b1839
IM
552static char *machine_get_memdev(Object *obj, Error **errp)
553{
554 MachineState *ms = MACHINE(obj);
555
556 return g_strdup(ms->ram_memdev_id);
557}
558
559static void machine_set_memdev(Object *obj, const char *value, Error **errp)
560{
561 MachineState *ms = MACHINE(obj);
562
563 g_free(ms->ram_memdev_id);
564 ms->ram_memdev_id = g_strdup(value);
565}
566
567
0bd1909d
EH
568static void machine_init_notify(Notifier *notifier, void *data)
569{
570 MachineState *machine = MACHINE(qdev_get_machine());
33cd52b5
AG
571
572 /*
0bd1909d
EH
573 * Loop through all dynamically created sysbus devices and check if they are
574 * all allowed. If a device is not allowed, error out.
33cd52b5 575 */
0bd1909d 576 foreach_dynamic_sysbus_device(validate_sysbus_device, machine);
33cd52b5
AG
577}
578
f2d672c2
IM
579HotpluggableCPUList *machine_query_hotpluggable_cpus(MachineState *machine)
580{
581 int i;
f2d672c2 582 HotpluggableCPUList *head = NULL;
d342eb76
IM
583 MachineClass *mc = MACHINE_GET_CLASS(machine);
584
585 /* force board to initialize possible_cpus if it hasn't been done yet */
586 mc->possible_cpu_arch_ids(machine);
f2d672c2 587
f2d672c2 588 for (i = 0; i < machine->possible_cpus->len; i++) {
d342eb76 589 Object *cpu;
f2d672c2
IM
590 HotpluggableCPU *cpu_item = g_new0(typeof(*cpu_item), 1);
591
d342eb76 592 cpu_item->type = g_strdup(machine->possible_cpus->cpus[i].type);
f2d672c2
IM
593 cpu_item->vcpus_count = machine->possible_cpus->cpus[i].vcpus_count;
594 cpu_item->props = g_memdup(&machine->possible_cpus->cpus[i].props,
595 sizeof(*cpu_item->props));
596
597 cpu = machine->possible_cpus->cpus[i].cpu;
598 if (cpu) {
599 cpu_item->has_qom_path = true;
600 cpu_item->qom_path = object_get_canonical_path(cpu);
601 }
54aa3de7 602 QAPI_LIST_PREPEND(head, cpu_item);
f2d672c2
IM
603 }
604 return head;
605}
606
7c88e65d
IM
607/**
608 * machine_set_cpu_numa_node:
609 * @machine: machine object to modify
610 * @props: specifies which cpu objects to assign to
611 * numa node specified by @props.node_id
612 * @errp: if an error occurs, a pointer to an area to store the error
613 *
614 * Associate NUMA node specified by @props.node_id with cpu slots that
615 * match socket/core/thread-ids specified by @props. It's recommended to use
616 * query-hotpluggable-cpus.props values to specify affected cpu slots,
617 * which would lead to exact 1:1 mapping of cpu slots to NUMA node.
618 *
619 * However for CLI convenience it's possible to pass in subset of properties,
620 * which would affect all cpu slots that match it.
621 * Ex for pc machine:
622 * -smp 4,cores=2,sockets=2 -numa node,nodeid=0 -numa node,nodeid=1 \
623 * -numa cpu,node-id=0,socket_id=0 \
624 * -numa cpu,node-id=1,socket_id=1
625 * will assign all child cores of socket 0 to node 0 and
626 * of socket 1 to node 1.
627 *
628 * On attempt of reassigning (already assigned) cpu slot to another NUMA node,
629 * return error.
630 * Empty subset is disallowed and function will return with error in this case.
631 */
632void machine_set_cpu_numa_node(MachineState *machine,
633 const CpuInstanceProperties *props, Error **errp)
634{
635 MachineClass *mc = MACHINE_GET_CLASS(machine);
244b3f44 636 NodeInfo *numa_info = machine->numa_state->nodes;
7c88e65d
IM
637 bool match = false;
638 int i;
639
640 if (!mc->possible_cpu_arch_ids) {
641 error_setg(errp, "mapping of CPUs to NUMA node is not supported");
642 return;
643 }
644
645 /* disabling node mapping is not supported, forbid it */
646 assert(props->has_node_id);
647
648 /* force board to initialize possible_cpus if it hasn't been done yet */
649 mc->possible_cpu_arch_ids(machine);
650
651 for (i = 0; i < machine->possible_cpus->len; i++) {
652 CPUArchId *slot = &machine->possible_cpus->cpus[i];
653
654 /* reject unsupported by board properties */
655 if (props->has_thread_id && !slot->props.has_thread_id) {
656 error_setg(errp, "thread-id is not supported");
657 return;
658 }
659
660 if (props->has_core_id && !slot->props.has_core_id) {
661 error_setg(errp, "core-id is not supported");
662 return;
663 }
664
665 if (props->has_socket_id && !slot->props.has_socket_id) {
666 error_setg(errp, "socket-id is not supported");
667 return;
668 }
669
176d2cda
LX
670 if (props->has_die_id && !slot->props.has_die_id) {
671 error_setg(errp, "die-id is not supported");
672 return;
673 }
674
7c88e65d
IM
675 /* skip slots with explicit mismatch */
676 if (props->has_thread_id && props->thread_id != slot->props.thread_id) {
677 continue;
678 }
679
680 if (props->has_core_id && props->core_id != slot->props.core_id) {
681 continue;
682 }
683
176d2cda
LX
684 if (props->has_die_id && props->die_id != slot->props.die_id) {
685 continue;
686 }
687
7c88e65d
IM
688 if (props->has_socket_id && props->socket_id != slot->props.socket_id) {
689 continue;
690 }
691
692 /* reject assignment if slot is already assigned, for compatibility
693 * of legacy cpu_index mapping with SPAPR core based mapping do not
694 * error out if cpu thread and matched core have the same node-id */
695 if (slot->props.has_node_id &&
696 slot->props.node_id != props->node_id) {
697 error_setg(errp, "CPU is already assigned to node-id: %" PRId64,
698 slot->props.node_id);
699 return;
700 }
701
702 /* assign slot to node as it's matched '-numa cpu' key */
703 match = true;
704 slot->props.node_id = props->node_id;
705 slot->props.has_node_id = props->has_node_id;
244b3f44
TX
706
707 if (machine->numa_state->hmat_enabled) {
708 if ((numa_info[props->node_id].initiator < MAX_NODES) &&
709 (props->node_id != numa_info[props->node_id].initiator)) {
710 error_setg(errp, "The initiator of CPU NUMA node %" PRId64
711 " should be itself", props->node_id);
712 return;
713 }
714 numa_info[props->node_id].has_cpu = true;
715 numa_info[props->node_id].initiator = props->node_id;
716 }
7c88e65d
IM
717 }
718
719 if (!match) {
720 error_setg(errp, "no match found");
721 }
722}
723
6f479566
LX
724static void smp_parse(MachineState *ms, QemuOpts *opts)
725{
726 if (opts) {
727 unsigned cpus = qemu_opt_get_number(opts, "cpus", 0);
728 unsigned sockets = qemu_opt_get_number(opts, "sockets", 0);
729 unsigned cores = qemu_opt_get_number(opts, "cores", 0);
730 unsigned threads = qemu_opt_get_number(opts, "threads", 0);
731
732 /* compute missing values, prefer sockets over cores over threads */
733 if (cpus == 0 || sockets == 0) {
734 cores = cores > 0 ? cores : 1;
735 threads = threads > 0 ? threads : 1;
736 if (cpus == 0) {
737 sockets = sockets > 0 ? sockets : 1;
738 cpus = cores * threads * sockets;
739 } else {
740 ms->smp.max_cpus =
741 qemu_opt_get_number(opts, "maxcpus", cpus);
742 sockets = ms->smp.max_cpus / (cores * threads);
743 }
744 } else if (cores == 0) {
745 threads = threads > 0 ? threads : 1;
746 cores = cpus / (sockets * threads);
747 cores = cores > 0 ? cores : 1;
748 } else if (threads == 0) {
749 threads = cpus / (cores * sockets);
750 threads = threads > 0 ? threads : 1;
751 } else if (sockets * cores * threads < cpus) {
752 error_report("cpu topology: "
753 "sockets (%u) * cores (%u) * threads (%u) < "
754 "smp_cpus (%u)",
755 sockets, cores, threads, cpus);
756 exit(1);
757 }
758
759 ms->smp.max_cpus =
760 qemu_opt_get_number(opts, "maxcpus", cpus);
761
762 if (ms->smp.max_cpus < cpus) {
763 error_report("maxcpus must be equal to or greater than smp");
764 exit(1);
765 }
766
c4332cd1
IM
767 if (sockets * cores * threads != ms->smp.max_cpus) {
768 error_report("Invalid CPU topology: "
769 "sockets (%u) * cores (%u) * threads (%u) "
770 "!= maxcpus (%u)",
6f479566
LX
771 sockets, cores, threads,
772 ms->smp.max_cpus);
773 exit(1);
774 }
775
6f479566
LX
776 ms->smp.cpus = cpus;
777 ms->smp.cores = cores;
778 ms->smp.threads = threads;
8cb30e3a 779 ms->smp.sockets = sockets;
6f479566
LX
780 }
781
782 if (ms->smp.cpus > 1) {
783 Error *blocker = NULL;
784 error_setg(&blocker, QERR_REPLAY_NOT_SUPPORTED, "smp");
785 replay_add_blocker(blocker);
786 }
787}
788
076b35b5
ND
789static void machine_class_init(ObjectClass *oc, void *data)
790{
791 MachineClass *mc = MACHINE_CLASS(oc);
792
793 /* Default 128 MB as guest ram size */
d23b6caa 794 mc->default_ram_size = 128 * MiB;
71ae9e94 795 mc->rom_file_has_mr = true;
6f479566 796 mc->smp_parse = smp_parse;
26b81df4 797
55641213
LV
798 /* numa node memory size aligned on 8MB by default.
799 * On Linux, each node's border has to be 8MB aligned
800 */
801 mc->numa_mem_align_shift = 23;
802
26b81df4 803 object_class_property_add_str(oc, "kernel",
d2623129 804 machine_get_kernel, machine_set_kernel);
26b81df4 805 object_class_property_set_description(oc, "kernel",
7eecec7d 806 "Linux kernel image file");
26b81df4
EH
807
808 object_class_property_add_str(oc, "initrd",
d2623129 809 machine_get_initrd, machine_set_initrd);
26b81df4 810 object_class_property_set_description(oc, "initrd",
7eecec7d 811 "Linux initial ramdisk file");
26b81df4
EH
812
813 object_class_property_add_str(oc, "append",
d2623129 814 machine_get_append, machine_set_append);
26b81df4 815 object_class_property_set_description(oc, "append",
7eecec7d 816 "Linux kernel command line");
26b81df4
EH
817
818 object_class_property_add_str(oc, "dtb",
d2623129 819 machine_get_dtb, machine_set_dtb);
26b81df4 820 object_class_property_set_description(oc, "dtb",
7eecec7d 821 "Linux kernel device tree file");
26b81df4
EH
822
823 object_class_property_add_str(oc, "dumpdtb",
d2623129 824 machine_get_dumpdtb, machine_set_dumpdtb);
26b81df4 825 object_class_property_set_description(oc, "dumpdtb",
7eecec7d 826 "Dump current dtb to a file and quit");
26b81df4
EH
827
828 object_class_property_add(oc, "phandle-start", "int",
829 machine_get_phandle_start, machine_set_phandle_start,
d2623129 830 NULL, NULL);
26b81df4 831 object_class_property_set_description(oc, "phandle-start",
7eecec7d 832 "The first phandle ID we may generate dynamically");
26b81df4
EH
833
834 object_class_property_add_str(oc, "dt-compatible",
d2623129 835 machine_get_dt_compatible, machine_set_dt_compatible);
26b81df4 836 object_class_property_set_description(oc, "dt-compatible",
7eecec7d 837 "Overrides the \"compatible\" property of the dt root node");
26b81df4
EH
838
839 object_class_property_add_bool(oc, "dump-guest-core",
d2623129 840 machine_get_dump_guest_core, machine_set_dump_guest_core);
26b81df4 841 object_class_property_set_description(oc, "dump-guest-core",
7eecec7d 842 "Include guest memory in a core dump");
26b81df4
EH
843
844 object_class_property_add_bool(oc, "mem-merge",
d2623129 845 machine_get_mem_merge, machine_set_mem_merge);
26b81df4 846 object_class_property_set_description(oc, "mem-merge",
7eecec7d 847 "Enable/disable memory merge support");
26b81df4
EH
848
849 object_class_property_add_bool(oc, "usb",
d2623129 850 machine_get_usb, machine_set_usb);
26b81df4 851 object_class_property_set_description(oc, "usb",
7eecec7d 852 "Set on/off to enable/disable usb");
26b81df4
EH
853
854 object_class_property_add_bool(oc, "graphics",
d2623129 855 machine_get_graphics, machine_set_graphics);
26b81df4 856 object_class_property_set_description(oc, "graphics",
7eecec7d 857 "Set on/off to enable/disable graphics emulation");
26b81df4 858
26b81df4 859 object_class_property_add_str(oc, "firmware",
d2623129 860 machine_get_firmware, machine_set_firmware);
26b81df4 861 object_class_property_set_description(oc, "firmware",
7eecec7d 862 "Firmware image");
26b81df4
EH
863
864 object_class_property_add_bool(oc, "suppress-vmdesc",
d2623129 865 machine_get_suppress_vmdesc, machine_set_suppress_vmdesc);
26b81df4 866 object_class_property_set_description(oc, "suppress-vmdesc",
7eecec7d 867 "Set on to disable self-describing migration");
26b81df4 868
e0292d7c
DG
869 object_class_property_add_link(oc, "confidential-guest-support",
870 TYPE_CONFIDENTIAL_GUEST_SUPPORT,
871 offsetof(MachineState, cgs),
872 machine_check_confidential_guest_support,
873 OBJ_PROP_LINK_STRONG);
874 object_class_property_set_description(oc, "confidential-guest-support",
875 "Set confidential guest scheme to support");
876
877 /* For compatibility */
db588194 878 object_class_property_add_str(oc, "memory-encryption",
d2623129 879 machine_get_memory_encryption, machine_set_memory_encryption);
db588194 880 object_class_property_set_description(oc, "memory-encryption",
7eecec7d 881 "Set memory encryption object to use");
acd5b054
EH
882
883 object_class_property_add_str(oc, "memory-backend",
884 machine_get_memdev, machine_set_memdev);
885 object_class_property_set_description(oc, "memory-backend",
886 "Set RAM backend"
887 "Valid value is ID of hostmem based backend");
076b35b5
ND
888}
889
dcb3d601
EH
890static void machine_class_base_init(ObjectClass *oc, void *data)
891{
2c920e45
PB
892 MachineClass *mc = MACHINE_CLASS(oc);
893 mc->max_cpus = mc->max_cpus ?: 1;
894 mc->min_cpus = mc->min_cpus ?: 1;
895 mc->default_cpus = mc->default_cpus ?: 1;
896
dcb3d601
EH
897 if (!object_class_is_abstract(oc)) {
898 const char *cname = object_class_get_name(oc);
899 assert(g_str_has_suffix(cname, TYPE_MACHINE_SUFFIX));
98cec76a
EH
900 mc->name = g_strndup(cname,
901 strlen(cname) - strlen(TYPE_MACHINE_SUFFIX));
b66bbee3 902 mc->compat_props = g_ptr_array_new();
dcb3d601
EH
903 }
904}
905
6b1b1440
MA
906static void machine_initfn(Object *obj)
907{
33cd52b5 908 MachineState *ms = MACHINE(obj);
b2fc91db 909 MachineClass *mc = MACHINE_GET_CLASS(obj);
33cd52b5 910
e0d17dfd
PB
911 container_get(obj, "/peripheral");
912 container_get(obj, "/peripheral-anon");
913
47c8ca53 914 ms->dump_guest_core = true;
75cc7f01 915 ms->mem_merge = true;
cfc58cf3 916 ms->enable_graphics = true;
58c91595 917 ms->kernel_cmdline = g_strdup("");
d8870d02 918
f6a0d06b
EA
919 if (mc->nvdimm_supported) {
920 Object *obj = OBJECT(ms);
921
922 ms->nvdimms_state = g_new0(NVDIMMState, 1);
923 object_property_add_bool(obj, "nvdimm",
d2623129 924 machine_get_nvdimm, machine_set_nvdimm);
f6a0d06b
EA
925 object_property_set_description(obj, "nvdimm",
926 "Set on/off to enable/disable "
7eecec7d 927 "NVDIMM instantiation");
f6a0d06b
EA
928
929 object_property_add_str(obj, "nvdimm-persistence",
930 machine_get_nvdimm_persistence,
d2623129 931 machine_set_nvdimm_persistence);
f6a0d06b
EA
932 object_property_set_description(obj, "nvdimm-persistence",
933 "Set NVDIMM persistence"
7eecec7d 934 "Valid values are cpu, mem-ctrl");
f6a0d06b
EA
935 }
936
fcd3f2cc 937 if (mc->cpu_index_to_instance_props && mc->get_default_cpu_node_id) {
aa570207 938 ms->numa_state = g_new0(NumaState, 1);
244b3f44 939 object_property_add_bool(obj, "hmat",
d2623129 940 machine_get_hmat, machine_set_hmat);
244b3f44
TX
941 object_property_set_description(obj, "hmat",
942 "Set on/off to enable/disable "
943 "ACPI Heterogeneous Memory Attribute "
7eecec7d 944 "Table (HMAT)");
aa570207 945 }
f6a0d06b 946
33cd52b5
AG
947 /* Register notifier when init is done for sysbus sanity checks */
948 ms->sysbus_notifier.notify = machine_init_notify;
949 qemu_add_machine_init_done_notifier(&ms->sysbus_notifier);
8b0e484c
PB
950
951 /* default to mc->default_cpus */
952 ms->smp.cpus = mc->default_cpus;
953 ms->smp.max_cpus = mc->default_cpus;
954 ms->smp.cores = 1;
955 ms->smp.threads = 1;
956 ms->smp.sockets = 1;
6b1b1440
MA
957}
958
959static void machine_finalize(Object *obj)
960{
961 MachineState *ms = MACHINE(obj);
962
6b1b1440
MA
963 g_free(ms->kernel_filename);
964 g_free(ms->initrd_filename);
965 g_free(ms->kernel_cmdline);
966 g_free(ms->dtb);
967 g_free(ms->dumpdtb);
968 g_free(ms->dt_compatible);
969 g_free(ms->firmware);
2ff4f67c 970 g_free(ms->device_memory);
f6a0d06b 971 g_free(ms->nvdimms_state);
aa570207 972 g_free(ms->numa_state);
6b1b1440 973}
36d20cb2 974
5e97b623
MA
975bool machine_usb(MachineState *machine)
976{
977 return machine->usb;
978}
979
6cabe7fa
MA
980int machine_phandle_start(MachineState *machine)
981{
982 return machine->phandle_start;
983}
984
47c8ca53
MA
985bool machine_dump_guest_core(MachineState *machine)
986{
987 return machine->dump_guest_core;
988}
989
75cc7f01
MA
990bool machine_mem_merge(MachineState *machine)
991{
992 return machine->mem_merge;
993}
994
ec78f811
IM
995static char *cpu_slot_to_string(const CPUArchId *cpu)
996{
997 GString *s = g_string_new(NULL);
998 if (cpu->props.has_socket_id) {
999 g_string_append_printf(s, "socket-id: %"PRId64, cpu->props.socket_id);
1000 }
176d2cda
LX
1001 if (cpu->props.has_die_id) {
1002 g_string_append_printf(s, "die-id: %"PRId64, cpu->props.die_id);
1003 }
ec78f811
IM
1004 if (cpu->props.has_core_id) {
1005 if (s->len) {
1006 g_string_append_printf(s, ", ");
1007 }
1008 g_string_append_printf(s, "core-id: %"PRId64, cpu->props.core_id);
1009 }
1010 if (cpu->props.has_thread_id) {
1011 if (s->len) {
1012 g_string_append_printf(s, ", ");
1013 }
1014 g_string_append_printf(s, "thread-id: %"PRId64, cpu->props.thread_id);
1015 }
1016 return g_string_free(s, false);
1017}
1018
244b3f44
TX
1019static void numa_validate_initiator(NumaState *numa_state)
1020{
1021 int i;
1022 NodeInfo *numa_info = numa_state->nodes;
1023
1024 for (i = 0; i < numa_state->num_nodes; i++) {
1025 if (numa_info[i].initiator == MAX_NODES) {
1026 error_report("The initiator of NUMA node %d is missing, use "
1027 "'-numa node,initiator' option to declare it", i);
1028 exit(1);
1029 }
1030
1031 if (!numa_info[numa_info[i].initiator].present) {
1032 error_report("NUMA node %" PRIu16 " is missing, use "
1033 "'-numa node' option to declare it first",
1034 numa_info[i].initiator);
1035 exit(1);
1036 }
1037
1038 if (!numa_info[numa_info[i].initiator].has_cpu) {
1039 error_report("The initiator of NUMA node %d is invalid", i);
1040 exit(1);
1041 }
1042 }
1043}
1044
7a3099fc 1045static void machine_numa_finish_cpu_init(MachineState *machine)
ec78f811
IM
1046{
1047 int i;
60bed6a3 1048 bool default_mapping;
ec78f811
IM
1049 GString *s = g_string_new(NULL);
1050 MachineClass *mc = MACHINE_GET_CLASS(machine);
1051 const CPUArchIdList *possible_cpus = mc->possible_cpu_arch_ids(machine);
1052
aa570207 1053 assert(machine->numa_state->num_nodes);
60bed6a3
IM
1054 for (i = 0; i < possible_cpus->len; i++) {
1055 if (possible_cpus->cpus[i].props.has_node_id) {
1056 break;
1057 }
1058 }
1059 default_mapping = (i == possible_cpus->len);
1060
ec78f811
IM
1061 for (i = 0; i < possible_cpus->len; i++) {
1062 const CPUArchId *cpu_slot = &possible_cpus->cpus[i];
1063
ec78f811 1064 if (!cpu_slot->props.has_node_id) {
d41f3e75
IM
1065 /* fetch default mapping from board and enable it */
1066 CpuInstanceProperties props = cpu_slot->props;
1067
79e07936 1068 props.node_id = mc->get_default_cpu_node_id(machine, i);
d41f3e75 1069 if (!default_mapping) {
60bed6a3
IM
1070 /* record slots with not set mapping,
1071 * TODO: make it hard error in future */
1072 char *cpu_str = cpu_slot_to_string(cpu_slot);
1073 g_string_append_printf(s, "%sCPU %d [%s]",
1074 s->len ? ", " : "", i, cpu_str);
1075 g_free(cpu_str);
d41f3e75
IM
1076
1077 /* non mapped cpus used to fallback to node 0 */
1078 props.node_id = 0;
60bed6a3 1079 }
d41f3e75
IM
1080
1081 props.has_node_id = true;
1082 machine_set_cpu_numa_node(machine, &props, &error_fatal);
ec78f811
IM
1083 }
1084 }
244b3f44
TX
1085
1086 if (machine->numa_state->hmat_enabled) {
1087 numa_validate_initiator(machine->numa_state);
1088 }
1089
c6ff347c 1090 if (s->len && !qtest_enabled()) {
3dc6f869
AF
1091 warn_report("CPU(s) not present in any NUMA nodes: %s",
1092 s->str);
1093 warn_report("All CPU(s) up to maxcpus should be described "
1094 "in NUMA config, ability to start up with partial NUMA "
1095 "mappings is obsoleted and will be removed in future");
ec78f811
IM
1096 }
1097 g_string_free(s, true);
1098}
1099
82b911aa
IM
1100MemoryRegion *machine_consume_memdev(MachineState *machine,
1101 HostMemoryBackend *backend)
1102{
1103 MemoryRegion *ret = host_memory_backend_get_memory(backend);
1104
1105 if (memory_region_is_mapped(ret)) {
7a309cc9
MA
1106 error_report("memory backend %s can't be used multiple times.",
1107 object_get_canonical_path_component(OBJECT(backend)));
82b911aa
IM
1108 exit(EXIT_FAILURE);
1109 }
1110 host_memory_backend_set_mapped(backend, true);
1111 vmstate_register_ram_global(ret);
1112 return ret;
1113}
1114
3df8c4f3
PB
1115bool machine_smp_parse(MachineState *ms, QemuOpts *opts, Error **errp)
1116{
1117 MachineClass *mc = MACHINE_GET_CLASS(ms);
1118
1119 mc->smp_parse(ms, opts);
1120
1121 /* sanity-check smp_cpus and max_cpus against mc */
1122 if (ms->smp.cpus < mc->min_cpus) {
1123 error_setg(errp, "Invalid SMP CPUs %d. The min CPUs "
1124 "supported by machine '%s' is %d",
1125 ms->smp.cpus,
1126 mc->name, mc->min_cpus);
1127 return false;
1128 } else if (ms->smp.max_cpus > mc->max_cpus) {
1129 error_setg(errp, "Invalid SMP CPUs %d. The max CPUs "
1130 "supported by machine '%s' is %d",
1131 current_machine->smp.max_cpus,
1132 mc->name, mc->max_cpus);
1133 return false;
1134 }
1135 return true;
1136}
1137
482dfe9a
IM
1138void machine_run_board_init(MachineState *machine)
1139{
1140 MachineClass *machine_class = MACHINE_GET_CLASS(machine);
61ad65d0
RH
1141 ObjectClass *oc = object_class_by_name(machine->cpu_type);
1142 CPUClass *cc;
ec78f811 1143
a3ef9bfb
PB
1144 /* This checkpoint is required by replay to separate prior clock
1145 reading from the other reads, because timer polling functions query
1146 clock values from the log. */
1147 replay_checkpoint(CHECKPOINT_INIT);
1148
82b911aa
IM
1149 if (machine->ram_memdev_id) {
1150 Object *o;
1151 o = object_resolve_path_type(machine->ram_memdev_id,
1152 TYPE_MEMORY_BACKEND, NULL);
1153 machine->ram = machine_consume_memdev(machine, MEMORY_BACKEND(o));
1154 }
1155
fcd3f2cc 1156 if (machine->numa_state) {
aa570207
TX
1157 numa_complete_configuration(machine);
1158 if (machine->numa_state->num_nodes) {
1159 machine_numa_finish_cpu_init(machine);
1160 }
3aeaac8f 1161 }
c9cf636d
AF
1162
1163 /* If the machine supports the valid_cpu_types check and the user
1164 * specified a CPU with -cpu check here that the user CPU is supported.
1165 */
1166 if (machine_class->valid_cpu_types && machine->cpu_type) {
c9cf636d
AF
1167 int i;
1168
1169 for (i = 0; machine_class->valid_cpu_types[i]; i++) {
61ad65d0 1170 if (object_class_dynamic_cast(oc,
c9cf636d
AF
1171 machine_class->valid_cpu_types[i])) {
1172 /* The user specificed CPU is in the valid field, we are
1173 * good to go.
1174 */
1175 break;
1176 }
1177 }
1178
1179 if (!machine_class->valid_cpu_types[i]) {
1180 /* The user specified CPU is not valid */
1181 error_report("Invalid CPU type: %s", machine->cpu_type);
1182 error_printf("The valid types are: %s",
1183 machine_class->valid_cpu_types[0]);
1184 for (i = 1; machine_class->valid_cpu_types[i]; i++) {
1185 error_printf(", %s", machine_class->valid_cpu_types[i]);
1186 }
1187 error_printf("\n");
1188
1189 exit(1);
1190 }
1191 }
1192
61ad65d0
RH
1193 /* Check if CPU type is deprecated and warn if so */
1194 cc = CPU_CLASS(oc);
1195 if (cc && cc->deprecation_note) {
1196 warn_report("CPU model %s is deprecated -- %s", machine->cpu_type,
1197 cc->deprecation_note);
1198 }
1199
e0292d7c 1200 if (machine->cgs) {
6e6a6ca7 1201 /*
e0292d7c 1202 * With confidential guests, the host can't see the real
6e6a6ca7
DG
1203 * contents of RAM, so there's no point in it trying to merge
1204 * areas.
1205 */
1206 machine_set_mem_merge(OBJECT(machine), false, &error_abort);
9f88a7a3
DG
1207
1208 /*
1209 * Virtio devices can't count on directly accessing guest
1210 * memory, so they need iommu_platform=on to use normal DMA
1211 * mechanisms. That requires also disabling legacy virtio
1212 * support for those virtio pci devices which allow it.
1213 */
1214 object_register_sugar_prop(TYPE_VIRTIO_PCI, "disable-legacy",
1215 "on", true);
1216 object_register_sugar_prop(TYPE_VIRTIO_DEVICE, "iommu_platform",
1217 "on", false);
6e6a6ca7
DG
1218 }
1219
482dfe9a 1220 machine_class->init(machine);
2f181fbd 1221 phase_advance(PHASE_MACHINE_INITIALIZED);
482dfe9a
IM
1222}
1223
6b21670c
PB
1224static NotifierList machine_init_done_notifiers =
1225 NOTIFIER_LIST_INITIALIZER(machine_init_done_notifiers);
1226
6b21670c
PB
1227void qemu_add_machine_init_done_notifier(Notifier *notify)
1228{
1229 notifier_list_add(&machine_init_done_notifiers, notify);
2f181fbd 1230 if (phase_check(PHASE_MACHINE_READY)) {
6b21670c
PB
1231 notify->notify(notify, NULL);
1232 }
1233}
1234
1235void qemu_remove_machine_init_done_notifier(Notifier *notify)
1236{
1237 notifier_remove(notify);
1238}
1239
f66dc873 1240void qdev_machine_creation_done(void)
6b21670c 1241{
f66dc873
PB
1242 cpu_synchronize_all_post_init();
1243
1244 if (current_machine->boot_once) {
1245 qemu_boot_set(current_machine->boot_once, &error_fatal);
1246 qemu_register_reset(restore_boot_order, g_strdup(current_machine->boot_order));
1247 }
1248
1249 /*
1250 * ok, initial machine setup is done, starting from now we can
1251 * only create hotpluggable devices
1252 */
2f181fbd 1253 phase_advance(PHASE_MACHINE_READY);
f66dc873
PB
1254 qdev_assert_realized_properly();
1255
1256 /* TODO: once all bus devices are qdevified, this should be done
1257 * when bus is created by qdev.c */
1258 /*
1259 * TODO: If we had a main 'reset container' that the whole system
1260 * lived in, we could reset that using the multi-phase reset
1261 * APIs. For the moment, we just reset the sysbus, which will cause
1262 * all devices hanging off it (and all their child buses, recursively)
1263 * to be reset. Note that this will *not* reset any Device objects
1264 * which are not attached to some part of the qbus tree!
1265 */
1266 qemu_register_reset(resettable_cold_reset_fn, sysbus_get_default());
1267
6b21670c 1268 notifier_list_notify(&machine_init_done_notifiers, NULL);
f66dc873
PB
1269
1270 if (rom_check_and_register_reset() != 0) {
f66dc873
PB
1271 exit(1);
1272 }
1273
1274 replay_start();
1275
1276 /* This checkpoint is required by replay to separate prior clock
1277 reading from the other reads, because timer polling functions query
1278 clock values from the log. */
1279 replay_checkpoint(CHECKPOINT_RESET);
1280 qemu_system_reset(SHUTDOWN_CAUSE_NONE);
1281 register_global_state();
6b21670c
PB
1282}
1283
36d20cb2
MA
1284static const TypeInfo machine_info = {
1285 .name = TYPE_MACHINE,
1286 .parent = TYPE_OBJECT,
1287 .abstract = true,
1288 .class_size = sizeof(MachineClass),
076b35b5 1289 .class_init = machine_class_init,
dcb3d601 1290 .class_base_init = machine_class_base_init,
36d20cb2 1291 .instance_size = sizeof(MachineState),
6b1b1440
MA
1292 .instance_init = machine_initfn,
1293 .instance_finalize = machine_finalize,
36d20cb2
MA
1294};
1295
1296static void machine_register_types(void)
1297{
1298 type_register_static(&machine_info);
1299}
1300
1301type_init(machine_register_types)