xref: /openbmc/qemu/qapi/machine.json (revision 14b48aaa)
1# -*- Mode: Python -*-
2# vim: filetype=python
3#
4# This work is licensed under the terms of the GNU GPL, version 2 or later.
5# See the COPYING file in the top-level directory.
6
7##
8# = Machines
9##
10
11{ 'include': 'common.json' }
12{ 'include': 'machine-common.json' }
13
14##
15# @SysEmuTarget:
16#
17# The comprehensive enumeration of QEMU system emulation ("softmmu")
18# targets.  Run "./configure --help" in the project root directory,
19# and look for the \*-softmmu targets near the "--target-list" option.
20# The individual target constants are not documented here, for the
21# time being.
22#
23# @rx: since 5.0
24#
25# @avr: since 5.1
26#
27# .. note:: The resulting QMP strings can be appended to the
28#    "qemu-system-" prefix to produce the corresponding QEMU executable
29#    name.  This is true even for "qemu-system-x86_64".
30#
31# Since: 3.0
32##
33{ 'enum' : 'SysEmuTarget',
34  'data' : [ 'aarch64', 'alpha', 'arm', 'avr', 'cris', 'hppa', 'i386',
35             'loongarch64', 'm68k', 'microblaze', 'microblazeel', 'mips', 'mips64',
36             'mips64el', 'mipsel', 'or1k', 'ppc',
37             'ppc64', 'riscv32', 'riscv64', 'rx', 's390x', 'sh4',
38             'sh4eb', 'sparc', 'sparc64', 'tricore',
39             'x86_64', 'xtensa', 'xtensaeb' ] }
40
41##
42# @CpuS390State:
43#
44# An enumeration of cpu states that can be assumed by a virtual S390
45# CPU
46#
47# Since: 2.12
48##
49{ 'enum': 'CpuS390State',
50  'prefix': 'S390_CPU_STATE',
51  'data': [ 'uninitialized', 'stopped', 'check-stop', 'operating', 'load' ] }
52
53##
54# @CpuInfoS390:
55#
56# Additional information about a virtual S390 CPU
57#
58# @cpu-state: the virtual CPU's state
59#
60# @dedicated: the virtual CPU's dedication (since 8.2)
61#
62# @entitlement: the virtual CPU's entitlement (since 8.2)
63#
64# Since: 2.12
65##
66{ 'struct': 'CpuInfoS390',
67  'data': { 'cpu-state': 'CpuS390State',
68            '*dedicated': 'bool',
69            '*entitlement': 'CpuS390Entitlement' } }
70
71##
72# @CpuInfoFast:
73#
74# Information about a virtual CPU
75#
76# @cpu-index: index of the virtual CPU
77#
78# @qom-path: path to the CPU object in the QOM tree
79#
80# @thread-id: ID of the underlying host thread
81#
82# @props: properties associated with a virtual CPU, e.g. the socket id
83#
84# @target: the QEMU system emulation target, which determines which
85#     additional fields will be listed (since 3.0)
86#
87# Since: 2.12
88##
89{ 'union'         : 'CpuInfoFast',
90  'base'          : { 'cpu-index'    : 'int',
91                      'qom-path'     : 'str',
92                      'thread-id'    : 'int',
93                      '*props'       : 'CpuInstanceProperties',
94                      'target'       : 'SysEmuTarget' },
95  'discriminator' : 'target',
96  'data'          : { 's390x'        : 'CpuInfoS390' } }
97
98##
99# @query-cpus-fast:
100#
101# Returns information about all virtual CPUs.
102#
103# Returns: list of @CpuInfoFast
104#
105# Since: 2.12
106#
107# .. qmp-example::
108#
109#     -> { "execute": "query-cpus-fast" }
110#     <- { "return": [
111#             {
112#                 "thread-id": 25627,
113#                 "props": {
114#                     "core-id": 0,
115#                     "thread-id": 0,
116#                     "socket-id": 0
117#                 },
118#                 "qom-path": "/machine/unattached/device[0]",
119#                 "target":"x86_64",
120#                 "cpu-index": 0
121#             },
122#             {
123#                 "thread-id": 25628,
124#                 "props": {
125#                     "core-id": 0,
126#                     "thread-id": 0,
127#                     "socket-id": 1
128#                 },
129#                 "qom-path": "/machine/unattached/device[2]",
130#                 "target":"x86_64",
131#                 "cpu-index": 1
132#             }
133#         ]
134#     }
135##
136{ 'command': 'query-cpus-fast', 'returns': [ 'CpuInfoFast' ] }
137
138##
139# @CompatProperty:
140#
141# Property default values specific to a machine type, for use by
142# scripts/compare-machine-types.
143#
144# @qom-type: name of the QOM type to which the default applies
145#
146# @property: name of its property to which the default applies
147#
148# @value: the default value (machine-specific default can overwrite
149#     the "default" default, to avoid this use -machine none)
150#
151# Since: 9.1
152##
153{ 'struct': 'CompatProperty',
154  'data': { 'qom-type': 'str',
155            'property': 'str',
156            'value': 'str' } }
157
158##
159# @MachineInfo:
160#
161# Information describing a machine.
162#
163# @name: the name of the machine
164#
165# @alias: an alias for the machine name
166#
167# @is-default: whether the machine is default
168#
169# @cpu-max: maximum number of CPUs supported by the machine type
170#     (since 1.5)
171#
172# @hotpluggable-cpus: cpu hotplug via -device is supported (since 2.7)
173#
174# @numa-mem-supported: true if '-numa node,mem' option is supported by
175#     the machine type and false otherwise (since 4.1)
176#
177# @deprecated: if true, the machine type is deprecated and may be
178#     removed in future versions of QEMU according to the QEMU
179#     deprecation policy (since 4.1)
180#
181# @default-cpu-type: default CPU model typename if none is requested
182#     via the -cpu argument.  (since 4.2)
183#
184# @default-ram-id: the default ID of initial RAM memory backend (since
185#     5.2)
186#
187# @acpi: machine type supports ACPI (since 8.0)
188#
189# @compat-props: The machine type's compatibility properties.  Only
190#     present when query-machines argument @compat-props is true.
191#     (since 9.1)
192#
193# Features:
194#
195# @unstable: Member @compat-props is experimental.
196#
197# Since: 1.2
198##
199{ 'struct': 'MachineInfo',
200  'data': { 'name': 'str', '*alias': 'str',
201            '*is-default': 'bool', 'cpu-max': 'int',
202            'hotpluggable-cpus': 'bool',  'numa-mem-supported': 'bool',
203            'deprecated': 'bool', '*default-cpu-type': 'str',
204            '*default-ram-id': 'str', 'acpi': 'bool',
205            '*compat-props': { 'type': ['CompatProperty'],
206                               'features': ['unstable'] } } }
207
208##
209# @query-machines:
210#
211# Return a list of supported machines
212#
213# @compat-props: if true, also return compatibility properties.
214#     (default: false) (since 9.1)
215#
216# Features:
217#
218# @unstable: Argument @compat-props is experimental.
219#
220# Returns: a list of MachineInfo
221#
222# Since: 1.2
223#
224# .. qmp-example::
225#
226#     -> { "execute": "query-machines", "arguments": { "compat-props": true } }
227#     <- { "return": [
228#               {
229#                  "hotpluggable-cpus": true,
230#                  "name": "pc-q35-6.2",
231#                  "compat-props": [
232#                       {
233#                          "qom-type": "virtio-mem",
234#                          "property": "unplugged-inaccessible",
235#                          "value": "off"
236#                       }
237#                   ],
238#                   "numa-mem-supported": false,
239#                   "default-cpu-type": "qemu64-x86_64-cpu",
240#                   "cpu-max": 288,
241#                   "deprecated": false,
242#                   "default-ram-id": "pc.ram"
243#               },
244#               ...
245#        }
246##
247{ 'command': 'query-machines',
248  'data': { '*compat-props': { 'type': 'bool',
249                               'features': [ 'unstable' ] } },
250  'returns': ['MachineInfo'] }
251
252##
253# @CurrentMachineParams:
254#
255# Information describing the running machine parameters.
256#
257# @wakeup-suspend-support: true if the machine supports wake up from
258#     suspend
259#
260# Since: 4.0
261##
262{ 'struct': 'CurrentMachineParams',
263  'data': { 'wakeup-suspend-support': 'bool'} }
264
265##
266# @query-current-machine:
267#
268# Return information on the current virtual machine.
269#
270# Returns: CurrentMachineParams
271#
272# Since: 4.0
273##
274{ 'command': 'query-current-machine', 'returns': 'CurrentMachineParams' }
275
276##
277# @TargetInfo:
278#
279# Information describing the QEMU target.
280#
281# @arch: the target architecture
282#
283# Since: 1.2
284##
285{ 'struct': 'TargetInfo',
286  'data': { 'arch': 'SysEmuTarget' } }
287
288##
289# @query-target:
290#
291# Return information about the target for this QEMU
292#
293# Returns: TargetInfo
294#
295# Since: 1.2
296##
297{ 'command': 'query-target', 'returns': 'TargetInfo' }
298
299##
300# @UuidInfo:
301#
302# Guest UUID information (Universally Unique Identifier).
303#
304# @UUID: the UUID of the guest
305#
306# Since: 0.14
307#
308# .. note:: If no UUID was specified for the guest, the nil UUID (all
309#    zeroes) is returned.
310##
311{ 'struct': 'UuidInfo', 'data': {'UUID': 'str'} }
312
313##
314# @query-uuid:
315#
316# Query the guest UUID information.
317#
318# Returns: The @UuidInfo for the guest
319#
320# Since: 0.14
321#
322# .. qmp-example::
323#
324#     -> { "execute": "query-uuid" }
325#     <- { "return": { "UUID": "550e8400-e29b-41d4-a716-446655440000" } }
326##
327{ 'command': 'query-uuid', 'returns': 'UuidInfo', 'allow-preconfig': true }
328
329##
330# @GuidInfo:
331#
332# GUID information.
333#
334# @guid: the globally unique identifier
335#
336# Since: 2.9
337##
338{ 'struct': 'GuidInfo', 'data': {'guid': 'str'} }
339
340##
341# @query-vm-generation-id:
342#
343# Show Virtual Machine Generation ID
344#
345# Since: 2.9
346##
347{ 'command': 'query-vm-generation-id', 'returns': 'GuidInfo' }
348
349##
350# @system_reset:
351#
352# Performs a hard reset of a guest.
353#
354# Since: 0.14
355#
356# .. qmp-example::
357#
358#     -> { "execute": "system_reset" }
359#     <- { "return": {} }
360##
361{ 'command': 'system_reset' }
362
363##
364# @system_powerdown:
365#
366# Requests that a guest perform a powerdown operation.
367#
368# Since: 0.14
369#
370# .. note:: A guest may or may not respond to this command.  This
371#    command returning does not indicate that a guest has accepted the
372#    request or that it has shut down.  Many guests will respond to this
373#    command by prompting the user in some way.
374#
375# .. qmp-example::
376#
377#     -> { "execute": "system_powerdown" }
378#     <- { "return": {} }
379##
380{ 'command': 'system_powerdown' }
381
382##
383# @system_wakeup:
384#
385# Wake up guest from suspend.  If the guest has wake-up from suspend
386# support enabled (wakeup-suspend-support flag from
387# query-current-machine), wake-up guest from suspend if the guest is
388# in SUSPENDED state.  Return an error otherwise.
389#
390# Since: 1.1
391#
392# .. note:: Prior to 4.0, this command does nothing in case the guest
393#    isn't suspended.
394#
395# .. qmp-example::
396#
397#     -> { "execute": "system_wakeup" }
398#     <- { "return": {} }
399##
400{ 'command': 'system_wakeup' }
401
402##
403# @LostTickPolicy:
404#
405# Policy for handling lost ticks in timer devices.  Ticks end up
406# getting lost when, for example, the guest is paused.
407#
408# @discard: throw away the missed ticks and continue with future
409#     injection normally.  The guest OS will see the timer jump ahead
410#     by a potentially quite significant amount all at once, as if the
411#     intervening chunk of time had simply not existed; needless to
412#     say, such a sudden jump can easily confuse a guest OS which is
413#     not specifically prepared to deal with it.  Assuming the guest
414#     OS can deal correctly with the time jump, the time in the guest
415#     and in the host should now match.
416#
417# @delay: continue to deliver ticks at the normal rate.  The guest OS
418#     will not notice anything is amiss, as from its point of view
419#     time will have continued to flow normally.  The time in the
420#     guest should now be behind the time in the host by exactly the
421#     amount of time during which ticks have been missed.
422#
423# @slew: deliver ticks at a higher rate to catch up with the missed
424#     ticks.  The guest OS will not notice anything is amiss, as from
425#     its point of view time will have continued to flow normally.
426#     Once the timer has managed to catch up with all the missing
427#     ticks, the time in the guest and in the host should match.
428#
429# Since: 2.0
430##
431{ 'enum': 'LostTickPolicy',
432  'data': ['discard', 'delay', 'slew' ] }
433
434##
435# @inject-nmi:
436#
437# Injects a Non-Maskable Interrupt into the default CPU (x86/s390) or
438# all CPUs (ppc64). The command fails when the guest doesn't support
439# injecting.
440#
441# Since: 0.14
442#
443# .. note:: Prior to 2.1, this command was only supported for x86 and
444#    s390 VMs.
445#
446# .. qmp-example::
447#
448#     -> { "execute": "inject-nmi" }
449#     <- { "return": {} }
450##
451{ 'command': 'inject-nmi' }
452
453##
454# @KvmInfo:
455#
456# Information about support for KVM acceleration
457#
458# @enabled: true if KVM acceleration is active
459#
460# @present: true if KVM acceleration is built into this executable
461#
462# Since: 0.14
463##
464{ 'struct': 'KvmInfo', 'data': {'enabled': 'bool', 'present': 'bool'} }
465
466##
467# @query-kvm:
468#
469# Returns information about KVM acceleration
470#
471# Returns: @KvmInfo
472#
473# Since: 0.14
474#
475# .. qmp-example::
476#
477#     -> { "execute": "query-kvm" }
478#     <- { "return": { "enabled": true, "present": true } }
479##
480{ 'command': 'query-kvm', 'returns': 'KvmInfo' }
481
482##
483# @NumaOptionsType:
484#
485# @node: NUMA nodes configuration
486#
487# @dist: NUMA distance configuration (since 2.10)
488#
489# @cpu: property based CPU(s) to node mapping (Since: 2.10)
490#
491# @hmat-lb: memory latency and bandwidth information (Since: 5.0)
492#
493# @hmat-cache: memory side cache information (Since: 5.0)
494#
495# Since: 2.1
496##
497{ 'enum': 'NumaOptionsType',
498  'data': [ 'node', 'dist', 'cpu', 'hmat-lb', 'hmat-cache' ] }
499
500##
501# @NumaOptions:
502#
503# A discriminated record of NUMA options.  (for OptsVisitor)
504#
505# @type: NUMA option type
506#
507# Since: 2.1
508##
509{ 'union': 'NumaOptions',
510  'base': { 'type': 'NumaOptionsType' },
511  'discriminator': 'type',
512  'data': {
513    'node': 'NumaNodeOptions',
514    'dist': 'NumaDistOptions',
515    'cpu': 'NumaCpuOptions',
516    'hmat-lb': 'NumaHmatLBOptions',
517    'hmat-cache': 'NumaHmatCacheOptions' }}
518
519##
520# @NumaNodeOptions:
521#
522# Create a guest NUMA node.  (for OptsVisitor)
523#
524# @nodeid: NUMA node ID (increase by 1 from 0 if omitted)
525#
526# @cpus: VCPUs belonging to this node (assign VCPUS round-robin if
527#     omitted)
528#
529# @mem: memory size of this node; mutually exclusive with @memdev.
530#     Equally divide total memory among nodes if both @mem and @memdev
531#     are omitted.
532#
533# @memdev: memory backend object.  If specified for one node, it must
534#     be specified for all nodes.
535#
536# @initiator: defined in ACPI 6.3 Chapter 5.2.27.3 Table 5-145, points
537#     to the nodeid which has the memory controller responsible for
538#     this NUMA node.  This field provides additional information as
539#     to the initiator node that is closest (as in directly attached)
540#     to this node, and therefore has the best performance (since 5.0)
541#
542# Since: 2.1
543##
544{ 'struct': 'NumaNodeOptions',
545  'data': {
546   '*nodeid': 'uint16',
547   '*cpus':   ['uint16'],
548   '*mem':    'size',
549   '*memdev': 'str',
550   '*initiator': 'uint16' }}
551
552##
553# @NumaDistOptions:
554#
555# Set the distance between 2 NUMA nodes.
556#
557# @src: source NUMA node.
558#
559# @dst: destination NUMA node.
560#
561# @val: NUMA distance from source node to destination node.  When a
562#     node is unreachable from another node, set the distance between
563#     them to 255.
564#
565# Since: 2.10
566##
567{ 'struct': 'NumaDistOptions',
568  'data': {
569   'src': 'uint16',
570   'dst': 'uint16',
571   'val': 'uint8' }}
572
573##
574# @CXLFixedMemoryWindowOptions:
575#
576# Create a CXL Fixed Memory Window
577#
578# @size: Size of the Fixed Memory Window in bytes.  Must be a multiple
579#     of 256MiB.
580#
581# @interleave-granularity: Number of contiguous bytes for which
582#     accesses will go to a given interleave target.  Accepted values
583#     [256, 512, 1k, 2k, 4k, 8k, 16k]
584#
585# @targets: Target root bridge IDs from -device ...,id=<ID> for each
586#     root bridge.
587#
588# Since: 7.1
589##
590{ 'struct': 'CXLFixedMemoryWindowOptions',
591  'data': {
592      'size': 'size',
593      '*interleave-granularity': 'size',
594      'targets': ['str'] }}
595
596##
597# @CXLFMWProperties:
598#
599# List of CXL Fixed Memory Windows.
600#
601# @cxl-fmw: List of CXLFixedMemoryWindowOptions
602#
603# Since: 7.1
604##
605{ 'struct' : 'CXLFMWProperties',
606  'data': { 'cxl-fmw': ['CXLFixedMemoryWindowOptions'] }
607}
608
609##
610# @X86CPURegister32:
611#
612# A X86 32-bit register
613#
614# Since: 1.5
615##
616{ 'enum': 'X86CPURegister32',
617  'data': [ 'EAX', 'EBX', 'ECX', 'EDX', 'ESP', 'EBP', 'ESI', 'EDI' ] }
618
619##
620# @X86CPUFeatureWordInfo:
621#
622# Information about a X86 CPU feature word
623#
624# @cpuid-input-eax: Input EAX value for CPUID instruction for that
625#     feature word
626#
627# @cpuid-input-ecx: Input ECX value for CPUID instruction for that
628#     feature word
629#
630# @cpuid-register: Output register containing the feature bits
631#
632# @features: value of output register, containing the feature bits
633#
634# Since: 1.5
635##
636{ 'struct': 'X86CPUFeatureWordInfo',
637  'data': { 'cpuid-input-eax': 'int',
638            '*cpuid-input-ecx': 'int',
639            'cpuid-register': 'X86CPURegister32',
640            'features': 'int' } }
641
642##
643# @DummyForceArrays:
644#
645# Not used by QMP; hack to let us use X86CPUFeatureWordInfoList
646# internally
647#
648# Since: 2.5
649##
650{ 'struct': 'DummyForceArrays',
651  'data': { 'unused': ['X86CPUFeatureWordInfo'] } }
652
653##
654# @NumaCpuOptions:
655#
656# Option "-numa cpu" overrides default cpu to node mapping.  It
657# accepts the same set of cpu properties as returned by
658# query-hotpluggable-cpus[].props, where node-id could be used to
659# override default node mapping.
660#
661# Since: 2.10
662##
663{ 'struct': 'NumaCpuOptions',
664   'base': 'CpuInstanceProperties',
665   'data' : {} }
666
667##
668# @HmatLBMemoryHierarchy:
669#
670# The memory hierarchy in the System Locality Latency and Bandwidth
671# Information Structure of HMAT (Heterogeneous Memory Attribute Table)
672#
673# For more information about @HmatLBMemoryHierarchy, see chapter
674# 5.2.27.4: Table 5-146: Field "Flags" of ACPI 6.3 spec.
675#
676# @memory: the structure represents the memory performance
677#
678# @first-level: first level of memory side cache
679#
680# @second-level: second level of memory side cache
681#
682# @third-level: third level of memory side cache
683#
684# Since: 5.0
685##
686{ 'enum': 'HmatLBMemoryHierarchy',
687  'data': [ 'memory', 'first-level', 'second-level', 'third-level' ] }
688
689##
690# @HmatLBDataType:
691#
692# Data type in the System Locality Latency and Bandwidth Information
693# Structure of HMAT (Heterogeneous Memory Attribute Table)
694#
695# For more information about @HmatLBDataType, see chapter 5.2.27.4:
696# Table 5-146:  Field "Data Type" of ACPI 6.3 spec.
697#
698# @access-latency: access latency (nanoseconds)
699#
700# @read-latency: read latency (nanoseconds)
701#
702# @write-latency: write latency (nanoseconds)
703#
704# @access-bandwidth: access bandwidth (Bytes per second)
705#
706# @read-bandwidth: read bandwidth (Bytes per second)
707#
708# @write-bandwidth: write bandwidth (Bytes per second)
709#
710# Since: 5.0
711##
712{ 'enum': 'HmatLBDataType',
713  'data': [ 'access-latency', 'read-latency', 'write-latency',
714            'access-bandwidth', 'read-bandwidth', 'write-bandwidth' ] }
715
716##
717# @NumaHmatLBOptions:
718#
719# Set the system locality latency and bandwidth information between
720# Initiator and Target proximity Domains.
721#
722# For more information about @NumaHmatLBOptions, see chapter 5.2.27.4:
723# Table 5-146 of ACPI 6.3 spec.
724#
725# @initiator: the Initiator Proximity Domain.
726#
727# @target: the Target Proximity Domain.
728#
729# @hierarchy: the Memory Hierarchy.  Indicates the performance of
730#     memory or side cache.
731#
732# @data-type: presents the type of data, access/read/write latency or
733#     hit latency.
734#
735# @latency: the value of latency from @initiator to @target proximity
736#     domain, the latency unit is "ns(nanosecond)".
737#
738# @bandwidth: the value of bandwidth between @initiator and @target
739#     proximity domain, the bandwidth unit is "Bytes per second".
740#
741# Since: 5.0
742##
743{ 'struct': 'NumaHmatLBOptions',
744    'data': {
745    'initiator': 'uint16',
746    'target': 'uint16',
747    'hierarchy': 'HmatLBMemoryHierarchy',
748    'data-type': 'HmatLBDataType',
749    '*latency': 'uint64',
750    '*bandwidth': 'size' }}
751
752##
753# @HmatCacheAssociativity:
754#
755# Cache associativity in the Memory Side Cache Information Structure
756# of HMAT
757#
758# For more information of @HmatCacheAssociativity, see chapter
759# 5.2.27.5: Table 5-147 of ACPI 6.3 spec.
760#
761# @none: None (no memory side cache in this proximity domain, or cache
762#     associativity unknown)
763#
764# @direct: Direct Mapped
765#
766# @complex: Complex Cache Indexing (implementation specific)
767#
768# Since: 5.0
769##
770{ 'enum': 'HmatCacheAssociativity',
771  'data': [ 'none', 'direct', 'complex' ] }
772
773##
774# @HmatCacheWritePolicy:
775#
776# Cache write policy in the Memory Side Cache Information Structure of
777# HMAT
778#
779# For more information of @HmatCacheWritePolicy, see chapter 5.2.27.5:
780# Table 5-147: Field "Cache Attributes" of ACPI 6.3 spec.
781#
782# @none: None (no memory side cache in this proximity domain, or cache
783#     write policy unknown)
784#
785# @write-back: Write Back (WB)
786#
787# @write-through: Write Through (WT)
788#
789# Since: 5.0
790##
791{ 'enum': 'HmatCacheWritePolicy',
792  'data': [ 'none', 'write-back', 'write-through' ] }
793
794##
795# @NumaHmatCacheOptions:
796#
797# Set the memory side cache information for a given memory domain.
798#
799# For more information of @NumaHmatCacheOptions, see chapter 5.2.27.5:
800# Table 5-147: Field "Cache Attributes" of ACPI 6.3 spec.
801#
802# @node-id: the memory proximity domain to which the memory belongs.
803#
804# @size: the size of memory side cache in bytes.
805#
806# @level: the cache level described in this structure.
807#
808# @associativity: the cache associativity,
809#     none/direct-mapped/complex(complex cache indexing).
810#
811# @policy: the write policy, none/write-back/write-through.
812#
813# @line: the cache Line size in bytes.
814#
815# Since: 5.0
816##
817{ 'struct': 'NumaHmatCacheOptions',
818  'data': {
819   'node-id': 'uint32',
820   'size': 'size',
821   'level': 'uint8',
822   'associativity': 'HmatCacheAssociativity',
823   'policy': 'HmatCacheWritePolicy',
824   'line': 'uint16' }}
825
826##
827# @memsave:
828#
829# Save a portion of guest memory to a file.
830#
831# @val: the virtual address of the guest to start from
832#
833# @size: the size of memory region to save
834#
835# @filename: the file to save the memory to as binary data
836#
837# @cpu-index: the index of the virtual CPU to use for translating the
838#     virtual address (defaults to CPU 0)
839#
840# Since: 0.14
841#
842# .. caution:: Errors were not reliably returned until 1.1.
843#
844# .. qmp-example::
845#
846#     -> { "execute": "memsave",
847#          "arguments": { "val": 10,
848#                         "size": 100,
849#                         "filename": "/tmp/virtual-mem-dump" } }
850#     <- { "return": {} }
851##
852{ 'command': 'memsave',
853  'data': {'val': 'int', 'size': 'int', 'filename': 'str', '*cpu-index': 'int'} }
854
855##
856# @pmemsave:
857#
858# Save a portion of guest physical memory to a file.
859#
860# @val: the physical address of the guest to start from
861#
862# @size: the size of memory region to save
863#
864# @filename: the file to save the memory to as binary data
865#
866# Since: 0.14
867#
868# .. caution:: Errors were not reliably returned until 1.1.
869#
870# .. qmp-example::
871#
872#     -> { "execute": "pmemsave",
873#          "arguments": { "val": 10,
874#                         "size": 100,
875#                         "filename": "/tmp/physical-mem-dump" } }
876#     <- { "return": {} }
877##
878{ 'command': 'pmemsave',
879  'data': {'val': 'int', 'size': 'int', 'filename': 'str'} }
880
881##
882# @Memdev:
883#
884# Information about memory backend
885#
886# @id: backend's ID if backend has 'id' property (since 2.9)
887#
888# @size: memory backend size
889#
890# @merge: whether memory merge support is enabled
891#
892# @dump: whether memory backend's memory is included in a core dump
893#
894# @prealloc: whether memory was preallocated
895#
896# @share: whether memory is private to QEMU or shared (since 6.1)
897#
898# @reserve: whether swap space (or huge pages) was reserved if
899#     applicable.  This corresponds to the user configuration and not
900#     the actual behavior implemented in the OS to perform the
901#     reservation.  For example, Linux will never reserve swap space
902#     for shared file mappings.  (since 6.1)
903#
904# @host-nodes: host nodes for its memory policy
905#
906# @policy: memory policy of memory backend
907#
908# Since: 2.1
909##
910{ 'struct': 'Memdev',
911  'data': {
912    '*id':        'str',
913    'size':       'size',
914    'merge':      'bool',
915    'dump':       'bool',
916    'prealloc':   'bool',
917    'share':      'bool',
918    '*reserve':    'bool',
919    'host-nodes': ['uint16'],
920    'policy':     'HostMemPolicy' }}
921
922##
923# @query-memdev:
924#
925# Returns information for all memory backends.
926#
927# Returns: a list of @Memdev.
928#
929# Since: 2.1
930#
931# .. qmp-example::
932#
933#     -> { "execute": "query-memdev" }
934#     <- { "return": [
935#            {
936#              "id": "mem1",
937#              "size": 536870912,
938#              "merge": false,
939#              "dump": true,
940#              "prealloc": false,
941#              "share": false,
942#              "host-nodes": [0, 1],
943#              "policy": "bind"
944#            },
945#            {
946#              "size": 536870912,
947#              "merge": false,
948#              "dump": true,
949#              "prealloc": true,
950#              "share": false,
951#              "host-nodes": [2, 3],
952#              "policy": "preferred"
953#            }
954#          ]
955#        }
956##
957{ 'command': 'query-memdev', 'returns': ['Memdev'], 'allow-preconfig': true }
958
959##
960# @CpuInstanceProperties:
961#
962# Properties identifying a CPU.
963#
964# Which members are optional and which mandatory depends on the
965# architecture and board.
966#
967# For s390x see :ref:`cpu-topology-s390x`.
968#
969# The ids other than the node-id specify the position of the CPU
970# within the CPU topology (as defined by the machine property "smp",
971# thus see also type @SMPConfiguration)
972#
973# @node-id: NUMA node ID the CPU belongs to
974#
975# @drawer-id: drawer number within CPU topology the CPU belongs to
976#     (since 8.2)
977#
978# @book-id: book number within parent container the CPU belongs to
979#     (since 8.2)
980#
981# @socket-id: socket number within parent container the CPU belongs to
982#
983# @die-id: die number within the parent container the CPU belongs to
984#     (since 4.1)
985#
986# @cluster-id: cluster number within the parent container the CPU
987#     belongs to (since 7.1)
988#
989# @module-id: module number within the parent container the CPU belongs
990#     to (since 9.1)
991#
992# @core-id: core number within the parent container the CPU belongs to
993#
994# @thread-id: thread number within the core the CPU  belongs to
995#
996# Since: 2.7
997##
998{ 'struct': 'CpuInstanceProperties',
999  # Keep these in sync with the properties device_add accepts
1000  'data': { '*node-id': 'int',
1001            '*drawer-id': 'int',
1002            '*book-id': 'int',
1003            '*socket-id': 'int',
1004            '*die-id': 'int',
1005            '*cluster-id': 'int',
1006            '*module-id': 'int',
1007            '*core-id': 'int',
1008            '*thread-id': 'int'
1009  }
1010}
1011
1012##
1013# @HotpluggableCPU:
1014#
1015# @type: CPU object type for usage with device_add command
1016#
1017# @props: list of properties to pass for hotplugging a CPU with
1018#     device_add
1019#
1020# @vcpus-count: number of logical VCPU threads @HotpluggableCPU
1021#     provides
1022#
1023# @qom-path: link to existing CPU object if CPU is present or omitted
1024#     if CPU is not present.
1025#
1026# .. note:: Management should be prepared to pass through additional
1027#    properties with device_add.
1028#
1029# Since: 2.7
1030##
1031{ 'struct': 'HotpluggableCPU',
1032  'data': { 'type': 'str',
1033            'vcpus-count': 'int',
1034            'props': 'CpuInstanceProperties',
1035            '*qom-path': 'str'
1036          }
1037}
1038
1039##
1040# @query-hotpluggable-cpus:
1041#
1042# TODO: Better documentation; currently there is none.
1043#
1044# Returns: a list of HotpluggableCPU objects.
1045#
1046# Since: 2.7
1047#
1048# Examples:
1049#
1050#     For pseries machine type started with -smp 2,cores=2,maxcpus=4
1051#     -cpu POWER8:
1052#
1053#     -> { "execute": "query-hotpluggable-cpus" }
1054#     <- {"return": [
1055#          { "props": { "core-id": 8 }, "type": "POWER8-spapr-cpu-core",
1056#            "vcpus-count": 1 },
1057#          { "props": { "core-id": 0 }, "type": "POWER8-spapr-cpu-core",
1058#            "vcpus-count": 1, "qom-path": "/machine/unattached/device[0]"}
1059#        ]}
1060#
1061#     For pc machine type started with -smp 1,maxcpus=2:
1062#
1063#     -> { "execute": "query-hotpluggable-cpus" }
1064#     <- {"return": [
1065#          {
1066#             "type": "qemu64-x86_64-cpu", "vcpus-count": 1,
1067#             "props": {"core-id": 0, "socket-id": 1, "thread-id": 0}
1068#          },
1069#          {
1070#             "qom-path": "/machine/unattached/device[0]",
1071#             "type": "qemu64-x86_64-cpu", "vcpus-count": 1,
1072#             "props": {"core-id": 0, "socket-id": 0, "thread-id": 0}
1073#          }
1074#        ]}
1075#
1076#     For s390x-virtio-ccw machine type started with -smp 1,maxcpus=2
1077#     -cpu qemu (Since: 2.11):
1078#
1079#     -> { "execute": "query-hotpluggable-cpus" }
1080#     <- {"return": [
1081#          {
1082#             "type": "qemu-s390x-cpu", "vcpus-count": 1,
1083#             "props": { "core-id": 1 }
1084#          },
1085#          {
1086#             "qom-path": "/machine/unattached/device[0]",
1087#             "type": "qemu-s390x-cpu", "vcpus-count": 1,
1088#             "props": { "core-id": 0 }
1089#          }
1090#        ]}
1091##
1092{ 'command': 'query-hotpluggable-cpus', 'returns': ['HotpluggableCPU'],
1093             'allow-preconfig': true }
1094
1095##
1096# @set-numa-node:
1097#
1098# Runtime equivalent of '-numa' CLI option, available at preconfigure
1099# stage to configure numa mapping before initializing machine.
1100#
1101# Since: 3.0
1102##
1103{ 'command': 'set-numa-node', 'boxed': true,
1104  'data': 'NumaOptions',
1105  'allow-preconfig': true
1106}
1107
1108##
1109# @balloon:
1110#
1111# Request the balloon driver to change its balloon size.
1112#
1113# @value: the target logical size of the VM in bytes.  We can deduce
1114#     the size of the balloon using this formula:
1115#
1116#        logical_vm_size = vm_ram_size - balloon_size
1117#
1118#     From it we have: balloon_size = vm_ram_size - @value
1119#
1120# Errors:
1121#     - If the balloon driver is enabled but not functional because
1122#       the KVM kernel module cannot support it, KVMMissingCap
1123#     - If no balloon device is present, DeviceNotActive
1124#
1125# .. note:: This command just issues a request to the guest.  When it
1126#    returns, the balloon size may not have changed.  A guest can change
1127#    the balloon size independent of this command.
1128#
1129# Since: 0.14
1130#
1131# Example:
1132#
1133#     -> { "execute": "balloon", "arguments": { "value": 536870912 } }
1134#     <- { "return": {} }
1135#
1136#     With a 2.5GiB guest this command inflated the ballon to 3GiB.
1137##
1138{ 'command': 'balloon', 'data': {'value': 'int'} }
1139
1140##
1141# @BalloonInfo:
1142#
1143# Information about the guest balloon device.
1144#
1145# @actual: the logical size of the VM in bytes Formula used:
1146#     logical_vm_size = vm_ram_size - balloon_size
1147#
1148# Since: 0.14
1149##
1150{ 'struct': 'BalloonInfo', 'data': {'actual': 'int' } }
1151
1152##
1153# @query-balloon:
1154#
1155# Return information about the balloon device.
1156#
1157# Returns:
1158#     @BalloonInfo
1159#
1160# Errors:
1161#     - If the balloon driver is enabled but not functional because
1162#       the KVM kernel module cannot support it, KVMMissingCap
1163#     - If no balloon device is present, DeviceNotActive
1164#
1165# Since: 0.14
1166#
1167# .. qmp-example::
1168#
1169#     -> { "execute": "query-balloon" }
1170#     <- { "return": {
1171#              "actual": 1073741824
1172#           }
1173#        }
1174##
1175{ 'command': 'query-balloon', 'returns': 'BalloonInfo' }
1176
1177##
1178# @BALLOON_CHANGE:
1179#
1180# Emitted when the guest changes the actual BALLOON level.  This value
1181# is equivalent to the @actual field return by the 'query-balloon'
1182# command
1183#
1184# @actual: the logical size of the VM in bytes Formula used:
1185#     logical_vm_size = vm_ram_size - balloon_size
1186#
1187# .. note:: This event is rate-limited.
1188#
1189# Since: 1.2
1190#
1191# .. qmp-example::
1192#
1193#     <- { "event": "BALLOON_CHANGE",
1194#          "data": { "actual": 944766976 },
1195#          "timestamp": { "seconds": 1267020223, "microseconds": 435656 } }
1196##
1197{ 'event': 'BALLOON_CHANGE',
1198  'data': { 'actual': 'int' } }
1199
1200##
1201# @HvBalloonInfo:
1202#
1203# hv-balloon guest-provided memory status information.
1204#
1205# @committed: the amount of memory in use inside the guest plus the
1206#     amount of the memory unusable inside the guest (ballooned out,
1207#     offline, etc.)
1208#
1209# @available: the amount of the memory inside the guest available for
1210#     new allocations ("free")
1211#
1212# Since: 8.2
1213##
1214{ 'struct': 'HvBalloonInfo',
1215  'data': { 'committed': 'size', 'available': 'size' } }
1216
1217##
1218# @query-hv-balloon-status-report:
1219#
1220# Returns the hv-balloon driver data contained in the last received
1221# "STATUS" message from the guest.
1222#
1223# Returns:
1224#     @HvBalloonInfo
1225#
1226# Errors:
1227#     - If no hv-balloon device is present, guest memory status
1228#       reporting is not enabled or no guest memory status report
1229#       received yet, GenericError
1230#
1231# Since: 8.2
1232#
1233# .. qmp-example::
1234#
1235#     -> { "execute": "query-hv-balloon-status-report" }
1236#     <- { "return": {
1237#              "committed": 816640000,
1238#              "available": 3333054464
1239#           }
1240#        }
1241##
1242{ 'command': 'query-hv-balloon-status-report', 'returns': 'HvBalloonInfo' }
1243
1244##
1245# @HV_BALLOON_STATUS_REPORT:
1246#
1247# Emitted when the hv-balloon driver receives a "STATUS" message from
1248# the guest.
1249#
1250# .. note:: This event is rate-limited.
1251#
1252# Since: 8.2
1253#
1254# .. qmp-example::
1255#
1256#     <- { "event": "HV_BALLOON_STATUS_REPORT",
1257#          "data": { "committed": 816640000, "available": 3333054464 },
1258#          "timestamp": { "seconds": 1600295492, "microseconds": 661044 } }
1259##
1260{ 'event': 'HV_BALLOON_STATUS_REPORT',
1261  'data': 'HvBalloonInfo' }
1262
1263##
1264# @MemoryInfo:
1265#
1266# Actual memory information in bytes.
1267#
1268# @base-memory: size of "base" memory specified with command line
1269#     option -m.
1270#
1271# @plugged-memory: size of memory that can be hot-unplugged.  This
1272#     field is omitted if target doesn't support memory hotplug (i.e.
1273#     CONFIG_MEM_DEVICE not defined at build time).
1274#
1275# Since: 2.11
1276##
1277{ 'struct': 'MemoryInfo',
1278  'data'  : { 'base-memory': 'size', '*plugged-memory': 'size' } }
1279
1280##
1281# @query-memory-size-summary:
1282#
1283# Return the amount of initially allocated and present hotpluggable
1284# (if enabled) memory in bytes.
1285#
1286# .. qmp-example::
1287#
1288#     -> { "execute": "query-memory-size-summary" }
1289#     <- { "return": { "base-memory": 4294967296, "plugged-memory": 0 } }
1290#
1291# Since: 2.11
1292##
1293{ 'command': 'query-memory-size-summary', 'returns': 'MemoryInfo' }
1294
1295##
1296# @PCDIMMDeviceInfo:
1297#
1298# PCDIMMDevice state information
1299#
1300# @id: device's ID
1301#
1302# @addr: physical address, where device is mapped
1303#
1304# @size: size of memory that the device provides
1305#
1306# @slot: slot number at which device is plugged in
1307#
1308# @node: NUMA node number where device is plugged in
1309#
1310# @memdev: memory backend linked with device
1311#
1312# @hotplugged: true if device was hotplugged
1313#
1314# @hotpluggable: true if device if could be added/removed while
1315#     machine is running
1316#
1317# Since: 2.1
1318##
1319{ 'struct': 'PCDIMMDeviceInfo',
1320  'data': { '*id': 'str',
1321            'addr': 'int',
1322            'size': 'int',
1323            'slot': 'int',
1324            'node': 'int',
1325            'memdev': 'str',
1326            'hotplugged': 'bool',
1327            'hotpluggable': 'bool'
1328          }
1329}
1330
1331##
1332# @VirtioPMEMDeviceInfo:
1333#
1334# VirtioPMEM state information
1335#
1336# @id: device's ID
1337#
1338# @memaddr: physical address in memory, where device is mapped
1339#
1340# @size: size of memory that the device provides
1341#
1342# @memdev: memory backend linked with device
1343#
1344# Since: 4.1
1345##
1346{ 'struct': 'VirtioPMEMDeviceInfo',
1347  'data': { '*id': 'str',
1348            'memaddr': 'size',
1349            'size': 'size',
1350            'memdev': 'str'
1351          }
1352}
1353
1354##
1355# @VirtioMEMDeviceInfo:
1356#
1357# VirtioMEMDevice state information
1358#
1359# @id: device's ID
1360#
1361# @memaddr: physical address in memory, where device is mapped
1362#
1363# @requested-size: the user requested size of the device
1364#
1365# @size: the (current) size of memory that the device provides
1366#
1367# @max-size: the maximum size of memory that the device can provide
1368#
1369# @block-size: the block size of memory that the device provides
1370#
1371# @node: NUMA node number where device is assigned to
1372#
1373# @memdev: memory backend linked with the region
1374#
1375# Since: 5.1
1376##
1377{ 'struct': 'VirtioMEMDeviceInfo',
1378  'data': { '*id': 'str',
1379            'memaddr': 'size',
1380            'requested-size': 'size',
1381            'size': 'size',
1382            'max-size': 'size',
1383            'block-size': 'size',
1384            'node': 'int',
1385            'memdev': 'str'
1386          }
1387}
1388
1389##
1390# @SgxEPCDeviceInfo:
1391#
1392# Sgx EPC state information
1393#
1394# @id: device's ID
1395#
1396# @memaddr: physical address in memory, where device is mapped
1397#
1398# @size: size of memory that the device provides
1399#
1400# @memdev: memory backend linked with device
1401#
1402# @node: the numa node (Since: 7.0)
1403#
1404# Since: 6.2
1405##
1406{ 'struct': 'SgxEPCDeviceInfo',
1407  'data': { '*id': 'str',
1408            'memaddr': 'size',
1409            'size': 'size',
1410            'node': 'int',
1411            'memdev': 'str'
1412          }
1413}
1414
1415##
1416# @HvBalloonDeviceInfo:
1417#
1418# hv-balloon provided memory state information
1419#
1420# @id: device's ID
1421#
1422# @memaddr: physical address in memory, where device is mapped
1423#
1424# @max-size: the maximum size of memory that the device can provide
1425#
1426# @memdev: memory backend linked with device
1427#
1428# Since: 8.2
1429##
1430{ 'struct': 'HvBalloonDeviceInfo',
1431  'data': { '*id': 'str',
1432            '*memaddr': 'size',
1433            'max-size': 'size',
1434            '*memdev': 'str'
1435          }
1436}
1437
1438##
1439# @MemoryDeviceInfoKind:
1440#
1441# @nvdimm: since 2.12
1442#
1443# @virtio-pmem: since 4.1
1444#
1445# @virtio-mem: since 5.1
1446#
1447# @sgx-epc: since 6.2.
1448#
1449# @hv-balloon: since 8.2.
1450#
1451# Since: 2.1
1452##
1453{ 'enum': 'MemoryDeviceInfoKind',
1454  'data': [ 'dimm', 'nvdimm', 'virtio-pmem', 'virtio-mem', 'sgx-epc',
1455            'hv-balloon' ] }
1456
1457##
1458# @PCDIMMDeviceInfoWrapper:
1459#
1460# @data: PCDIMMDevice state information
1461#
1462# Since: 2.1
1463##
1464{ 'struct': 'PCDIMMDeviceInfoWrapper',
1465  'data': { 'data': 'PCDIMMDeviceInfo' } }
1466
1467##
1468# @VirtioPMEMDeviceInfoWrapper:
1469#
1470# @data: VirtioPMEM state information
1471#
1472# Since: 2.1
1473##
1474{ 'struct': 'VirtioPMEMDeviceInfoWrapper',
1475  'data': { 'data': 'VirtioPMEMDeviceInfo' } }
1476
1477##
1478# @VirtioMEMDeviceInfoWrapper:
1479#
1480# @data: VirtioMEMDevice state information
1481#
1482# Since: 2.1
1483##
1484{ 'struct': 'VirtioMEMDeviceInfoWrapper',
1485  'data': { 'data': 'VirtioMEMDeviceInfo' } }
1486
1487##
1488# @SgxEPCDeviceInfoWrapper:
1489#
1490# @data: Sgx EPC state information
1491#
1492# Since: 6.2
1493##
1494{ 'struct': 'SgxEPCDeviceInfoWrapper',
1495  'data': { 'data': 'SgxEPCDeviceInfo' } }
1496
1497##
1498# @HvBalloonDeviceInfoWrapper:
1499#
1500# @data: hv-balloon provided memory state information
1501#
1502# Since: 8.2
1503##
1504{ 'struct': 'HvBalloonDeviceInfoWrapper',
1505  'data': { 'data': 'HvBalloonDeviceInfo' } }
1506
1507##
1508# @MemoryDeviceInfo:
1509#
1510# Union containing information about a memory device
1511#
1512# @type: memory device type
1513#
1514# Since: 2.1
1515##
1516{ 'union': 'MemoryDeviceInfo',
1517  'base': { 'type': 'MemoryDeviceInfoKind' },
1518  'discriminator': 'type',
1519  'data': { 'dimm': 'PCDIMMDeviceInfoWrapper',
1520            'nvdimm': 'PCDIMMDeviceInfoWrapper',
1521            'virtio-pmem': 'VirtioPMEMDeviceInfoWrapper',
1522            'virtio-mem': 'VirtioMEMDeviceInfoWrapper',
1523            'sgx-epc': 'SgxEPCDeviceInfoWrapper',
1524            'hv-balloon': 'HvBalloonDeviceInfoWrapper'
1525          }
1526}
1527
1528##
1529# @SgxEPC:
1530#
1531# Sgx EPC cmdline information
1532#
1533# @memdev: memory backend linked with device
1534#
1535# @node: the numa node (Since: 7.0)
1536#
1537# Since: 6.2
1538##
1539{ 'struct': 'SgxEPC',
1540  'data': { 'memdev': 'str',
1541            'node': 'int'
1542          }
1543}
1544
1545##
1546# @SgxEPCProperties:
1547#
1548# SGX properties of machine types.
1549#
1550# @sgx-epc: list of ids of memory-backend-epc objects.
1551#
1552# Since: 6.2
1553##
1554{ 'struct': 'SgxEPCProperties',
1555  'data': { 'sgx-epc': ['SgxEPC'] }
1556}
1557
1558##
1559# @query-memory-devices:
1560#
1561# Lists available memory devices and their state
1562#
1563# Since: 2.1
1564#
1565# .. qmp-example::
1566#
1567#     -> { "execute": "query-memory-devices" }
1568#     <- { "return": [ { "data":
1569#                           { "addr": 5368709120,
1570#                             "hotpluggable": true,
1571#                             "hotplugged": true,
1572#                             "id": "d1",
1573#                             "memdev": "/objects/memX",
1574#                             "node": 0,
1575#                             "size": 1073741824,
1576#                             "slot": 0},
1577#                        "type": "dimm"
1578#                      } ] }
1579##
1580{ 'command': 'query-memory-devices', 'returns': ['MemoryDeviceInfo'] }
1581
1582##
1583# @MEMORY_DEVICE_SIZE_CHANGE:
1584#
1585# Emitted when the size of a memory device changes.  Only emitted for
1586# memory devices that can actually change the size (e.g., virtio-mem
1587# due to guest action).
1588#
1589# @id: device's ID
1590#
1591# @size: the new size of memory that the device provides
1592#
1593# @qom-path: path to the device object in the QOM tree (since 6.2)
1594#
1595# .. note:: This event is rate-limited.
1596#
1597# Since: 5.1
1598#
1599# .. qmp-example::
1600#
1601#     <- { "event": "MEMORY_DEVICE_SIZE_CHANGE",
1602#          "data": { "id": "vm0", "size": 1073741824,
1603#                    "qom-path": "/machine/unattached/device[2]" },
1604#          "timestamp": { "seconds": 1588168529, "microseconds": 201316 } }
1605##
1606{ 'event': 'MEMORY_DEVICE_SIZE_CHANGE',
1607  'data': { '*id': 'str', 'size': 'size', 'qom-path' : 'str'} }
1608
1609##
1610# @BootConfiguration:
1611#
1612# Schema for virtual machine boot configuration.
1613#
1614# @order: Boot order (a=floppy, c=hard disk, d=CD-ROM, n=network)
1615#
1616# @once: Boot order to apply on first boot
1617#
1618# @menu: Whether to show a boot menu
1619#
1620# @splash: The name of the file to be passed to the firmware as logo
1621#     picture, if @menu is true.
1622#
1623# @splash-time: How long to show the logo picture, in milliseconds
1624#
1625# @reboot-timeout: Timeout before guest reboots after boot fails
1626#
1627# @strict: Whether to attempt booting from devices not included in the
1628#     boot order
1629#
1630# Since: 7.1
1631##
1632{ 'struct': 'BootConfiguration', 'data': {
1633     '*order': 'str',
1634     '*once': 'str',
1635     '*menu': 'bool',
1636     '*splash': 'str',
1637     '*splash-time': 'int',
1638     '*reboot-timeout': 'int',
1639     '*strict': 'bool' } }
1640
1641##
1642# @SMPConfiguration:
1643#
1644# Schema for CPU topology configuration.  A missing value lets QEMU
1645# figure out a suitable value based on the ones that are provided.
1646#
1647# The members other than @cpus and @maxcpus define a topology of
1648# containers.
1649#
1650# The ordering from highest/coarsest to lowest/finest is:
1651# @drawers, @books, @sockets, @dies, @clusters, @cores, @threads.
1652#
1653# Different architectures support different subsets of topology
1654# containers.
1655#
1656# For example, s390x does not have clusters and dies, and the socket
1657# is the parent container of cores.
1658#
1659# @cpus: number of virtual CPUs in the virtual machine
1660#
1661# @maxcpus: maximum number of hotpluggable virtual CPUs in the virtual
1662#     machine
1663#
1664# @drawers: number of drawers in the CPU topology (since 8.2)
1665#
1666# @books: number of books in the CPU topology (since 8.2)
1667#
1668# @sockets: number of sockets per parent container
1669#
1670# @dies: number of dies per parent container
1671#
1672# @clusters: number of clusters per parent container (since 7.0)
1673#
1674# @modules: number of modules per parent container (since 9.1)
1675#
1676# @cores: number of cores per parent container
1677#
1678# @threads: number of threads per core
1679#
1680# Since: 6.1
1681##
1682{ 'struct': 'SMPConfiguration', 'data': {
1683     '*cpus': 'int',
1684     '*drawers': 'int',
1685     '*books': 'int',
1686     '*sockets': 'int',
1687     '*dies': 'int',
1688     '*clusters': 'int',
1689     '*modules': 'int',
1690     '*cores': 'int',
1691     '*threads': 'int',
1692     '*maxcpus': 'int' } }
1693
1694##
1695# @x-query-irq:
1696#
1697# Query interrupt statistics
1698#
1699# Features:
1700#
1701# @unstable: This command is meant for debugging.
1702#
1703# Returns: interrupt statistics
1704#
1705# Since: 6.2
1706##
1707{ 'command': 'x-query-irq',
1708  'returns': 'HumanReadableText',
1709  'features': [ 'unstable' ] }
1710
1711##
1712# @x-query-jit:
1713#
1714# Query TCG compiler statistics
1715#
1716# Features:
1717#
1718# @unstable: This command is meant for debugging.
1719#
1720# Returns: TCG compiler statistics
1721#
1722# Since: 6.2
1723##
1724{ 'command': 'x-query-jit',
1725  'returns': 'HumanReadableText',
1726  'if': 'CONFIG_TCG',
1727  'features': [ 'unstable' ] }
1728
1729##
1730# @x-query-numa:
1731#
1732# Query NUMA topology information
1733#
1734# Features:
1735#
1736# @unstable: This command is meant for debugging.
1737#
1738# Returns: topology information
1739#
1740# Since: 6.2
1741##
1742{ 'command': 'x-query-numa',
1743  'returns': 'HumanReadableText',
1744  'features': [ 'unstable' ] }
1745
1746##
1747# @x-query-opcount:
1748#
1749# Query TCG opcode counters
1750#
1751# Features:
1752#
1753# @unstable: This command is meant for debugging.
1754#
1755# Returns: TCG opcode counters
1756#
1757# Since: 6.2
1758##
1759{ 'command': 'x-query-opcount',
1760  'returns': 'HumanReadableText',
1761  'if': 'CONFIG_TCG',
1762  'features': [ 'unstable' ] }
1763
1764##
1765# @x-query-ramblock:
1766#
1767# Query system ramblock information
1768#
1769# Features:
1770#
1771# @unstable: This command is meant for debugging.
1772#
1773# Returns: system ramblock information
1774#
1775# Since: 6.2
1776##
1777{ 'command': 'x-query-ramblock',
1778  'returns': 'HumanReadableText',
1779  'features': [ 'unstable' ] }
1780
1781##
1782# @x-query-roms:
1783#
1784# Query information on the registered ROMS
1785#
1786# Features:
1787#
1788# @unstable: This command is meant for debugging.
1789#
1790# Returns: registered ROMs
1791#
1792# Since: 6.2
1793##
1794{ 'command': 'x-query-roms',
1795  'returns': 'HumanReadableText',
1796  'features': [ 'unstable' ] }
1797
1798##
1799# @x-query-usb:
1800#
1801# Query information on the USB devices
1802#
1803# Features:
1804#
1805# @unstable: This command is meant for debugging.
1806#
1807# Returns: USB device information
1808#
1809# Since: 6.2
1810##
1811{ 'command': 'x-query-usb',
1812  'returns': 'HumanReadableText',
1813  'features': [ 'unstable' ] }
1814
1815##
1816# @SmbiosEntryPointType:
1817#
1818# @32: SMBIOS version 2.1 (32-bit) Entry Point
1819#
1820# @64: SMBIOS version 3.0 (64-bit) Entry Point
1821#
1822# @auto: Either 2.x or 3.x SMBIOS version, 2.x if configuration can be
1823#     described by it and 3.x otherwise (since: 9.0)
1824#
1825# Since: 7.0
1826##
1827{ 'enum': 'SmbiosEntryPointType',
1828  'data': [ '32', '64', 'auto' ] }
1829
1830##
1831# @MemorySizeConfiguration:
1832#
1833# Schema for memory size configuration.
1834#
1835# @size: memory size in bytes
1836#
1837# @max-size: maximum hotpluggable memory size in bytes
1838#
1839# @slots: number of available memory slots for hotplug
1840#
1841# Since: 7.1
1842##
1843{ 'struct': 'MemorySizeConfiguration', 'data': {
1844     '*size': 'size',
1845     '*max-size': 'size',
1846     '*slots': 'uint64' } }
1847
1848##
1849# @dumpdtb:
1850#
1851# Save the FDT in dtb format.
1852#
1853# @filename: name of the dtb file to be created
1854#
1855# Since: 7.2
1856#
1857# .. qmp-example::
1858#
1859#     -> { "execute": "dumpdtb" }
1860#          "arguments": { "filename": "fdt.dtb" } }
1861#     <- { "return": {} }
1862##
1863{ 'command': 'dumpdtb',
1864  'data': { 'filename': 'str' },
1865  'if': 'CONFIG_FDT' }
1866
1867##
1868# @x-query-interrupt-controllers:
1869#
1870# Query information on interrupt controller devices
1871#
1872# Features:
1873#
1874# @unstable: This command is meant for debugging.
1875#
1876# Returns: Interrupt controller devices information
1877#
1878# Since: 9.1
1879##
1880{ 'command': 'x-query-interrupt-controllers',
1881  'returns': 'HumanReadableText',
1882  'features': [ 'unstable' ]}
1883