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