hw/gpio/omap_gpio: Use CamelCase for TYPE_OMAP1_GPIO type name
[qemu.git] / qapi / machine.json
blobb9228a5e46169e5d29abd08244d1022abdca955e
1 # -*- Mode: Python -*-
2 # vim: filetype=python
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.
7 ##
8 # = Machines
9 ##
11 { 'include': 'common.json' }
14 # @SysEmuTarget:
16 # The comprehensive enumeration of QEMU system emulation ("softmmu")
17 # targets. Run "./configure --help" in the project root directory, and
18 # look for the \*-softmmu targets near the "--target-list" option. The
19 # individual target constants are not documented here, for the time
20 # being.
22 # @rx: since 5.0
23 # @avr: since 5.1
25 # Notes: The resulting QMP strings can be appended to the "qemu-system-"
26 #        prefix to produce the corresponding QEMU executable name. This
27 #        is true even for "qemu-system-x86_64".
29 # Since: 3.0
31 { 'enum' : 'SysEmuTarget',
32   'data' : [ 'aarch64', 'alpha', 'arm', 'avr', 'cris', 'hppa', 'i386',
33              'loongarch64', 'm68k', 'microblaze', 'microblazeel', 'mips', 'mips64',
34              'mips64el', 'mipsel', 'nios2', 'or1k', 'ppc',
35              'ppc64', 'riscv32', 'riscv64', 'rx', 's390x', 'sh4',
36              'sh4eb', 'sparc', 'sparc64', 'tricore',
37              'x86_64', 'xtensa', 'xtensaeb' ] }
40 # @CpuS390State:
42 # An enumeration of cpu states that can be assumed by a virtual
43 # S390 CPU
45 # Since: 2.12
47 { 'enum': 'CpuS390State',
48   'prefix': 'S390_CPU_STATE',
49   'data': [ 'uninitialized', 'stopped', 'check-stop', 'operating', 'load' ] }
52 # @CpuInfoS390:
54 # Additional information about a virtual S390 CPU
56 # @cpu-state: the virtual CPU's state
58 # Since: 2.12
60 { 'struct': 'CpuInfoS390', 'data': { 'cpu-state': 'CpuS390State' } }
63 # @CpuInfoFast:
65 # Information about a virtual CPU
67 # @cpu-index: index of the virtual CPU
69 # @qom-path: path to the CPU object in the QOM tree
71 # @thread-id: ID of the underlying host thread
73 # @props: properties describing to which node/socket/core/thread
74 #         virtual CPU belongs to, provided if supported by board
76 # @target: the QEMU system emulation target, which determines which
77 #          additional fields will be listed (since 3.0)
79 # Since: 2.12
81 { 'union'         : 'CpuInfoFast',
82   'base'          : { 'cpu-index'    : 'int',
83                       'qom-path'     : 'str',
84                       'thread-id'    : 'int',
85                       '*props'       : 'CpuInstanceProperties',
86                       'target'       : 'SysEmuTarget' },
87   'discriminator' : 'target',
88   'data'          : { 's390x'        : 'CpuInfoS390' } }
91 # @query-cpus-fast:
93 # Returns information about all virtual CPUs.
95 # Returns: list of @CpuInfoFast
97 # Since: 2.12
99 # Example:
101 # -> { "execute": "query-cpus-fast" }
102 # <- { "return": [
103 #         {
104 #             "thread-id": 25627,
105 #             "props": {
106 #                 "core-id": 0,
107 #                 "thread-id": 0,
108 #                 "socket-id": 0
109 #             },
110 #             "qom-path": "/machine/unattached/device[0]",
111 #             "target":"x86_64",
112 #             "cpu-index": 0
113 #         },
114 #         {
115 #             "thread-id": 25628,
116 #             "props": {
117 #                 "core-id": 0,
118 #                 "thread-id": 0,
119 #                 "socket-id": 1
120 #             },
121 #             "qom-path": "/machine/unattached/device[2]",
122 #             "target":"x86_64",
123 #             "cpu-index": 1
124 #         }
125 #     ]
126 # }
128 { 'command': 'query-cpus-fast', 'returns': [ 'CpuInfoFast' ] }
131 # @MachineInfo:
133 # Information describing a machine.
135 # @name: the name of the machine
137 # @alias: an alias for the machine name
139 # @is-default: whether the machine is default
141 # @cpu-max: maximum number of CPUs supported by the machine type
142 #           (since 1.5)
144 # @hotpluggable-cpus: cpu hotplug via -device is supported (since 2.7)
146 # @numa-mem-supported: true if '-numa node,mem' option is supported by
147 #                      the machine type and false otherwise (since 4.1)
149 # @deprecated: if true, the machine type is deprecated and may be removed
150 #              in future versions of QEMU according to the QEMU deprecation
151 #              policy (since 4.1)
153 # @default-cpu-type: default CPU model typename if none is requested via
154 #                    the -cpu argument. (since 4.2)
156 # @default-ram-id: the default ID of initial RAM memory backend (since 5.2)
158 # Since: 1.2
160 { 'struct': 'MachineInfo',
161   'data': { 'name': 'str', '*alias': 'str',
162             '*is-default': 'bool', 'cpu-max': 'int',
163             'hotpluggable-cpus': 'bool',  'numa-mem-supported': 'bool',
164             'deprecated': 'bool', '*default-cpu-type': 'str',
165             '*default-ram-id': 'str' } }
168 # @query-machines:
170 # Return a list of supported machines
172 # Returns: a list of MachineInfo
174 # Since: 1.2
176 { 'command': 'query-machines', 'returns': ['MachineInfo'] }
179 # @CurrentMachineParams:
181 # Information describing the running machine parameters.
183 # @wakeup-suspend-support: true if the machine supports wake up from
184 #                          suspend
186 # Since: 4.0
188 { 'struct': 'CurrentMachineParams',
189   'data': { 'wakeup-suspend-support': 'bool'} }
192 # @query-current-machine:
194 # Return information on the current virtual machine.
196 # Returns: CurrentMachineParams
198 # Since: 4.0
200 { 'command': 'query-current-machine', 'returns': 'CurrentMachineParams' }
203 # @TargetInfo:
205 # Information describing the QEMU target.
207 # @arch: the target architecture
209 # Since: 1.2
211 { 'struct': 'TargetInfo',
212   'data': { 'arch': 'SysEmuTarget' } }
215 # @query-target:
217 # Return information about the target for this QEMU
219 # Returns: TargetInfo
221 # Since: 1.2
223 { 'command': 'query-target', 'returns': 'TargetInfo' }
226 # @UuidInfo:
228 # Guest UUID information (Universally Unique Identifier).
230 # @UUID: the UUID of the guest
232 # Since: 0.14
234 # Notes: If no UUID was specified for the guest, a null UUID is returned.
236 { 'struct': 'UuidInfo', 'data': {'UUID': 'str'} }
239 # @query-uuid:
241 # Query the guest UUID information.
243 # Returns: The @UuidInfo for the guest
245 # Since: 0.14
247 # Example:
249 # -> { "execute": "query-uuid" }
250 # <- { "return": { "UUID": "550e8400-e29b-41d4-a716-446655440000" } }
253 { 'command': 'query-uuid', 'returns': 'UuidInfo', 'allow-preconfig': true }
256 # @GuidInfo:
258 # GUID information.
260 # @guid: the globally unique identifier
262 # Since: 2.9
264 { 'struct': 'GuidInfo', 'data': {'guid': 'str'} }
267 # @query-vm-generation-id:
269 # Show Virtual Machine Generation ID
271 # Since: 2.9
273 { 'command': 'query-vm-generation-id', 'returns': 'GuidInfo' }
276 # @system_reset:
278 # Performs a hard reset of a guest.
280 # Since: 0.14
282 # Example:
284 # -> { "execute": "system_reset" }
285 # <- { "return": {} }
288 { 'command': 'system_reset' }
291 # @system_powerdown:
293 # Requests that a guest perform a powerdown operation.
295 # Since: 0.14
297 # Notes: A guest may or may not respond to this command.  This command
298 #        returning does not indicate that a guest has accepted the request or
299 #        that it has shut down.  Many guests will respond to this command by
300 #        prompting the user in some way.
302 # Example:
304 # -> { "execute": "system_powerdown" }
305 # <- { "return": {} }
308 { 'command': 'system_powerdown' }
311 # @system_wakeup:
313 # Wake up guest from suspend. If the guest has wake-up from suspend
314 # support enabled (wakeup-suspend-support flag from
315 # query-current-machine), wake-up guest from suspend if the guest is
316 # in SUSPENDED state. Return an error otherwise.
318 # Since: 1.1
320 # Returns: nothing.
322 # Note: prior to 4.0, this command does nothing in case the guest
323 #       isn't suspended.
325 # Example:
327 # -> { "execute": "system_wakeup" }
328 # <- { "return": {} }
331 { 'command': 'system_wakeup' }
334 # @LostTickPolicy:
336 # Policy for handling lost ticks in timer devices.  Ticks end up getting
337 # lost when, for example, the guest is paused.
339 # @discard: throw away the missed ticks and continue with future injection
340 #           normally.  The guest OS will see the timer jump ahead by a
341 #           potentially quite significant amount all at once, as if the
342 #           intervening chunk of time had simply not existed; needless to
343 #           say, such a sudden jump can easily confuse a guest OS which is
344 #           not specifically prepared to deal with it.  Assuming the guest
345 #           OS can deal correctly with the time jump, the time in the guest
346 #           and in the host should now match.
348 # @delay: continue to deliver ticks at the normal rate.  The guest OS will
349 #         not notice anything is amiss, as from its point of view time will
350 #         have continued to flow normally.  The time in the guest should now
351 #         be behind the time in the host by exactly the amount of time during
352 #         which ticks have been missed.
354 # @slew: deliver ticks at a higher rate to catch up with the missed ticks.
355 #        The guest OS will not notice anything is amiss, as from its point
356 #        of view time will have continued to flow normally.  Once the timer
357 #        has managed to catch up with all the missing ticks, the time in
358 #        the guest and in the host should match.
360 # Since: 2.0
362 { 'enum': 'LostTickPolicy',
363   'data': ['discard', 'delay', 'slew' ] }
366 # @inject-nmi:
368 # Injects a Non-Maskable Interrupt into the default CPU (x86/s390) or all CPUs (ppc64).
369 # The command fails when the guest doesn't support injecting.
371 # Returns: If successful, nothing
373 # Since: 0.14
375 # Note: prior to 2.1, this command was only supported for x86 and s390 VMs
377 # Example:
379 # -> { "execute": "inject-nmi" }
380 # <- { "return": {} }
383 { 'command': 'inject-nmi' }
386 # @KvmInfo:
388 # Information about support for KVM acceleration
390 # @enabled: true if KVM acceleration is active
392 # @present: true if KVM acceleration is built into this executable
394 # Since: 0.14
396 { 'struct': 'KvmInfo', 'data': {'enabled': 'bool', 'present': 'bool'} }
399 # @query-kvm:
401 # Returns information about KVM acceleration
403 # Returns: @KvmInfo
405 # Since: 0.14
407 # Example:
409 # -> { "execute": "query-kvm" }
410 # <- { "return": { "enabled": true, "present": true } }
413 { 'command': 'query-kvm', 'returns': 'KvmInfo' }
416 # @NumaOptionsType:
418 # @node: NUMA nodes configuration
420 # @dist: NUMA distance configuration (since 2.10)
422 # @cpu: property based CPU(s) to node mapping (Since: 2.10)
424 # @hmat-lb: memory latency and bandwidth information (Since: 5.0)
426 # @hmat-cache: memory side cache information (Since: 5.0)
428 # Since: 2.1
430 { 'enum': 'NumaOptionsType',
431   'data': [ 'node', 'dist', 'cpu', 'hmat-lb', 'hmat-cache' ] }
434 # @NumaOptions:
436 # A discriminated record of NUMA options. (for OptsVisitor)
438 # Since: 2.1
440 { 'union': 'NumaOptions',
441   'base': { 'type': 'NumaOptionsType' },
442   'discriminator': 'type',
443   'data': {
444     'node': 'NumaNodeOptions',
445     'dist': 'NumaDistOptions',
446     'cpu': 'NumaCpuOptions',
447     'hmat-lb': 'NumaHmatLBOptions',
448     'hmat-cache': 'NumaHmatCacheOptions' }}
451 # @NumaNodeOptions:
453 # Create a guest NUMA node. (for OptsVisitor)
455 # @nodeid: NUMA node ID (increase by 1 from 0 if omitted)
457 # @cpus: VCPUs belonging to this node (assign VCPUS round-robin
458 #         if omitted)
460 # @mem: memory size of this node; mutually exclusive with @memdev.
461 #       Equally divide total memory among nodes if both @mem and @memdev are
462 #       omitted.
464 # @memdev: memory backend object.  If specified for one node,
465 #          it must be specified for all nodes.
467 # @initiator: defined in ACPI 6.3 Chapter 5.2.27.3 Table 5-145,
468 #             points to the nodeid which has the memory controller
469 #             responsible for this NUMA node. This field provides
470 #             additional information as to the initiator node that
471 #             is closest (as in directly attached) to this node, and
472 #             therefore has the best performance (since 5.0)
474 # Since: 2.1
476 { 'struct': 'NumaNodeOptions',
477   'data': {
478    '*nodeid': 'uint16',
479    '*cpus':   ['uint16'],
480    '*mem':    'size',
481    '*memdev': 'str',
482    '*initiator': 'uint16' }}
485 # @NumaDistOptions:
487 # Set the distance between 2 NUMA nodes.
489 # @src: source NUMA node.
491 # @dst: destination NUMA node.
493 # @val: NUMA distance from source node to destination node.
494 #       When a node is unreachable from another node, set the distance
495 #       between them to 255.
497 # Since: 2.10
499 { 'struct': 'NumaDistOptions',
500   'data': {
501    'src': 'uint16',
502    'dst': 'uint16',
503    'val': 'uint8' }}
506 # @CXLFixedMemoryWindowOptions:
508 # Create a CXL Fixed Memory Window
510 # @size: Size of the Fixed Memory Window in bytes. Must be a multiple
511 #        of 256MiB.
512 # @interleave-granularity: Number of contiguous bytes for which
513 #                          accesses will go to a given interleave target.
514 #                          Accepted values [256, 512, 1k, 2k, 4k, 8k, 16k]
515 # @targets: Target root bridge IDs from -device ...,id=<ID> for each root
516 #           bridge.
518 # Since 7.1
520 { 'struct': 'CXLFixedMemoryWindowOptions',
521   'data': {
522       'size': 'size',
523       '*interleave-granularity': 'size',
524       'targets': ['str'] }}
527 # @CXLFMWProperties:
529 # List of CXL Fixed Memory Windows.
531 # @cxl-fmw: List of CXLFixedMemoryWindowOptions
533 # Since 7.1
535 { 'struct' : 'CXLFMWProperties',
536   'data': { 'cxl-fmw': ['CXLFixedMemoryWindowOptions'] }
540 # @X86CPURegister32:
542 # A X86 32-bit register
544 # Since: 1.5
546 { 'enum': 'X86CPURegister32',
547   'data': [ 'EAX', 'EBX', 'ECX', 'EDX', 'ESP', 'EBP', 'ESI', 'EDI' ] }
550 # @X86CPUFeatureWordInfo:
552 # Information about a X86 CPU feature word
554 # @cpuid-input-eax: Input EAX value for CPUID instruction for that feature word
556 # @cpuid-input-ecx: Input ECX value for CPUID instruction for that
557 #                   feature word
559 # @cpuid-register: Output register containing the feature bits
561 # @features: value of output register, containing the feature bits
563 # Since: 1.5
565 { 'struct': 'X86CPUFeatureWordInfo',
566   'data': { 'cpuid-input-eax': 'int',
567             '*cpuid-input-ecx': 'int',
568             'cpuid-register': 'X86CPURegister32',
569             'features': 'int' } }
572 # @DummyForceArrays:
574 # Not used by QMP; hack to let us use X86CPUFeatureWordInfoList internally
576 # Since: 2.5
578 { 'struct': 'DummyForceArrays',
579   'data': { 'unused': ['X86CPUFeatureWordInfo'] } }
582 # @NumaCpuOptions:
584 # Option "-numa cpu" overrides default cpu to node mapping.
585 # It accepts the same set of cpu properties as returned by
586 # query-hotpluggable-cpus[].props, where node-id could be used to
587 # override default node mapping.
589 # Since: 2.10
591 { 'struct': 'NumaCpuOptions',
592    'base': 'CpuInstanceProperties',
593    'data' : {} }
596 # @HmatLBMemoryHierarchy:
598 # The memory hierarchy in the System Locality Latency and Bandwidth
599 # Information Structure of HMAT (Heterogeneous Memory Attribute Table)
601 # For more information about @HmatLBMemoryHierarchy, see chapter
602 # 5.2.27.4: Table 5-146: Field "Flags" of ACPI 6.3 spec.
604 # @memory: the structure represents the memory performance
606 # @first-level: first level of memory side cache
608 # @second-level: second level of memory side cache
610 # @third-level: third level of memory side cache
612 # Since: 5.0
614 { 'enum': 'HmatLBMemoryHierarchy',
615   'data': [ 'memory', 'first-level', 'second-level', 'third-level' ] }
618 # @HmatLBDataType:
620 # Data type in the System Locality Latency and Bandwidth
621 # Information Structure of HMAT (Heterogeneous Memory Attribute Table)
623 # For more information about @HmatLBDataType, see chapter
624 # 5.2.27.4: Table 5-146:  Field "Data Type" of ACPI 6.3 spec.
626 # @access-latency: access latency (nanoseconds)
628 # @read-latency: read latency (nanoseconds)
630 # @write-latency: write latency (nanoseconds)
632 # @access-bandwidth: access bandwidth (Bytes per second)
634 # @read-bandwidth: read bandwidth (Bytes per second)
636 # @write-bandwidth: write bandwidth (Bytes per second)
638 # Since: 5.0
640 { 'enum': 'HmatLBDataType',
641   'data': [ 'access-latency', 'read-latency', 'write-latency',
642             'access-bandwidth', 'read-bandwidth', 'write-bandwidth' ] }
645 # @NumaHmatLBOptions:
647 # Set the system locality latency and bandwidth information
648 # between Initiator and Target proximity Domains.
650 # For more information about @NumaHmatLBOptions, see chapter
651 # 5.2.27.4: Table 5-146 of ACPI 6.3 spec.
653 # @initiator: the Initiator Proximity Domain.
655 # @target: the Target Proximity Domain.
657 # @hierarchy: the Memory Hierarchy. Indicates the performance
658 #             of memory or side cache.
660 # @data-type: presents the type of data, access/read/write
661 #             latency or hit latency.
663 # @latency: the value of latency from @initiator to @target
664 #           proximity domain, the latency unit is "ns(nanosecond)".
666 # @bandwidth: the value of bandwidth between @initiator and @target
667 #             proximity domain, the bandwidth unit is
668 #             "Bytes per second".
670 # Since: 5.0
672 { 'struct': 'NumaHmatLBOptions',
673     'data': {
674     'initiator': 'uint16',
675     'target': 'uint16',
676     'hierarchy': 'HmatLBMemoryHierarchy',
677     'data-type': 'HmatLBDataType',
678     '*latency': 'uint64',
679     '*bandwidth': 'size' }}
682 # @HmatCacheAssociativity:
684 # Cache associativity in the Memory Side Cache Information Structure
685 # of HMAT
687 # For more information of @HmatCacheAssociativity, see chapter
688 # 5.2.27.5: Table 5-147 of ACPI 6.3 spec.
690 # @none: None (no memory side cache in this proximity domain,
691 #              or cache associativity unknown)
693 # @direct: Direct Mapped
695 # @complex: Complex Cache Indexing (implementation specific)
697 # Since: 5.0
699 { 'enum': 'HmatCacheAssociativity',
700   'data': [ 'none', 'direct', 'complex' ] }
703 # @HmatCacheWritePolicy:
705 # Cache write policy in the Memory Side Cache Information Structure
706 # of HMAT
708 # For more information of @HmatCacheWritePolicy, see chapter
709 # 5.2.27.5: Table 5-147: Field "Cache Attributes" of ACPI 6.3 spec.
711 # @none: None (no memory side cache in this proximity domain,
712 #        or cache write policy unknown)
714 # @write-back: Write Back (WB)
716 # @write-through: Write Through (WT)
718 # Since: 5.0
720 { 'enum': 'HmatCacheWritePolicy',
721   'data': [ 'none', 'write-back', 'write-through' ] }
724 # @NumaHmatCacheOptions:
726 # Set the memory side cache information for a given memory domain.
728 # For more information of @NumaHmatCacheOptions, see chapter
729 # 5.2.27.5: Table 5-147: Field "Cache Attributes" of ACPI 6.3 spec.
731 # @node-id: the memory proximity domain to which the memory belongs.
733 # @size: the size of memory side cache in bytes.
735 # @level: the cache level described in this structure.
737 # @associativity: the cache associativity,
738 #                 none/direct-mapped/complex(complex cache indexing).
740 # @policy: the write policy, none/write-back/write-through.
742 # @line: the cache Line size in bytes.
744 # Since: 5.0
746 { 'struct': 'NumaHmatCacheOptions',
747   'data': {
748    'node-id': 'uint32',
749    'size': 'size',
750    'level': 'uint8',
751    'associativity': 'HmatCacheAssociativity',
752    'policy': 'HmatCacheWritePolicy',
753    'line': 'uint16' }}
756 # @memsave:
758 # Save a portion of guest memory to a file.
760 # @val: the virtual address of the guest to start from
762 # @size: the size of memory region to save
764 # @filename: the file to save the memory to as binary data
766 # @cpu-index: the index of the virtual CPU to use for translating the
767 #             virtual address (defaults to CPU 0)
769 # Returns: Nothing on success
771 # Since: 0.14
773 # Notes: Errors were not reliably returned until 1.1
775 # Example:
777 # -> { "execute": "memsave",
778 #      "arguments": { "val": 10,
779 #                     "size": 100,
780 #                     "filename": "/tmp/virtual-mem-dump" } }
781 # <- { "return": {} }
784 { 'command': 'memsave',
785   'data': {'val': 'int', 'size': 'int', 'filename': 'str', '*cpu-index': 'int'} }
788 # @pmemsave:
790 # Save a portion of guest physical memory to a file.
792 # @val: the physical address of the guest to start from
794 # @size: the size of memory region to save
796 # @filename: the file to save the memory to as binary data
798 # Returns: Nothing on success
800 # Since: 0.14
802 # Notes: Errors were not reliably returned until 1.1
804 # Example:
806 # -> { "execute": "pmemsave",
807 #      "arguments": { "val": 10,
808 #                     "size": 100,
809 #                     "filename": "/tmp/physical-mem-dump" } }
810 # <- { "return": {} }
813 { 'command': 'pmemsave',
814   'data': {'val': 'int', 'size': 'int', 'filename': 'str'} }
817 # @Memdev:
819 # Information about memory backend
821 # @id: backend's ID if backend has 'id' property (since 2.9)
823 # @size: memory backend size
825 # @merge: whether memory merge support is enabled
827 # @dump: whether memory backend's memory is included in a core dump
829 # @prealloc: whether memory was preallocated
831 # @share: whether memory is private to QEMU or shared (since 6.1)
833 # @reserve: whether swap space (or huge pages) was reserved if applicable.
834 #           This corresponds to the user configuration and not the actual
835 #           behavior implemented in the OS to perform the reservation.
836 #           For example, Linux will never reserve swap space for shared
837 #           file mappings. (since 6.1)
839 # @host-nodes: host nodes for its memory policy
841 # @policy: memory policy of memory backend
843 # Since: 2.1
845 { 'struct': 'Memdev',
846   'data': {
847     '*id':        'str',
848     'size':       'size',
849     'merge':      'bool',
850     'dump':       'bool',
851     'prealloc':   'bool',
852     'share':      'bool',
853     '*reserve':    'bool',
854     'host-nodes': ['uint16'],
855     'policy':     'HostMemPolicy' }}
858 # @query-memdev:
860 # Returns information for all memory backends.
862 # Returns: a list of @Memdev.
864 # Since: 2.1
866 # Example:
868 # -> { "execute": "query-memdev" }
869 # <- { "return": [
870 #        {
871 #          "id": "mem1",
872 #          "size": 536870912,
873 #          "merge": false,
874 #          "dump": true,
875 #          "prealloc": false,
876 #          "share": false,
877 #          "host-nodes": [0, 1],
878 #          "policy": "bind"
879 #        },
880 #        {
881 #          "size": 536870912,
882 #          "merge": false,
883 #          "dump": true,
884 #          "prealloc": true,
885 #          "share": false,
886 #          "host-nodes": [2, 3],
887 #          "policy": "preferred"
888 #        }
889 #      ]
890 #    }
893 { 'command': 'query-memdev', 'returns': ['Memdev'], 'allow-preconfig': true }
896 # @CpuInstanceProperties:
898 # List of properties to be used for hotplugging a CPU instance,
899 # it should be passed by management with device_add command when
900 # a CPU is being hotplugged.
902 # @node-id: NUMA node ID the CPU belongs to
903 # @socket-id: socket number within node/board the CPU belongs to
904 # @die-id: die number within socket the CPU belongs to (since 4.1)
905 # @cluster-id: cluster number within die the CPU belongs to (since 7.1)
906 # @core-id: core number within cluster the CPU belongs to
907 # @thread-id: thread number within core the CPU belongs to
909 # Note: currently there are 6 properties that could be present
910 #       but management should be prepared to pass through other
911 #       properties with device_add command to allow for future
912 #       interface extension. This also requires the filed names to be kept in
913 #       sync with the properties passed to -device/device_add.
915 # Since: 2.7
917 { 'struct': 'CpuInstanceProperties',
918   'data': { '*node-id': 'int',
919             '*socket-id': 'int',
920             '*die-id': 'int',
921             '*cluster-id': 'int',
922             '*core-id': 'int',
923             '*thread-id': 'int'
924   }
928 # @HotpluggableCPU:
930 # @type: CPU object type for usage with device_add command
931 # @props: list of properties to be used for hotplugging CPU
932 # @vcpus-count: number of logical VCPU threads @HotpluggableCPU provides
933 # @qom-path: link to existing CPU object if CPU is present or
934 #            omitted if CPU is not present.
936 # Since: 2.7
938 { 'struct': 'HotpluggableCPU',
939   'data': { 'type': 'str',
940             'vcpus-count': 'int',
941             'props': 'CpuInstanceProperties',
942             '*qom-path': 'str'
943           }
947 # @query-hotpluggable-cpus:
949 # TODO: Better documentation; currently there is none.
951 # Returns: a list of HotpluggableCPU objects.
953 # Since: 2.7
955 # Example:
957 # For pseries machine type started with -smp 2,cores=2,maxcpus=4 -cpu POWER8:
959 # -> { "execute": "query-hotpluggable-cpus" }
960 # <- {"return": [
961 #      { "props": { "core-id": 8 }, "type": "POWER8-spapr-cpu-core",
962 #        "vcpus-count": 1 },
963 #      { "props": { "core-id": 0 }, "type": "POWER8-spapr-cpu-core",
964 #        "vcpus-count": 1, "qom-path": "/machine/unattached/device[0]"}
965 #    ]}'
967 # For pc machine type started with -smp 1,maxcpus=2:
969 # -> { "execute": "query-hotpluggable-cpus" }
970 # <- {"return": [
971 #      {
972 #         "type": "qemu64-x86_64-cpu", "vcpus-count": 1,
973 #         "props": {"core-id": 0, "socket-id": 1, "thread-id": 0}
974 #      },
975 #      {
976 #         "qom-path": "/machine/unattached/device[0]",
977 #         "type": "qemu64-x86_64-cpu", "vcpus-count": 1,
978 #         "props": {"core-id": 0, "socket-id": 0, "thread-id": 0}
979 #      }
980 #    ]}
982 # For s390x-virtio-ccw machine type started with -smp 1,maxcpus=2 -cpu qemu
983 # (Since: 2.11):
985 # -> { "execute": "query-hotpluggable-cpus" }
986 # <- {"return": [
987 #      {
988 #         "type": "qemu-s390x-cpu", "vcpus-count": 1,
989 #         "props": { "core-id": 1 }
990 #      },
991 #      {
992 #         "qom-path": "/machine/unattached/device[0]",
993 #         "type": "qemu-s390x-cpu", "vcpus-count": 1,
994 #         "props": { "core-id": 0 }
995 #      }
996 #    ]}
999 { 'command': 'query-hotpluggable-cpus', 'returns': ['HotpluggableCPU'],
1000              'allow-preconfig': true }
1003 # @set-numa-node:
1005 # Runtime equivalent of '-numa' CLI option, available at
1006 # preconfigure stage to configure numa mapping before initializing
1007 # machine.
1009 # Since: 3.0
1011 { 'command': 'set-numa-node', 'boxed': true,
1012   'data': 'NumaOptions',
1013   'allow-preconfig': true
1017 # @balloon:
1019 # Request the balloon driver to change its balloon size.
1021 # @value: the target logical size of the VM in bytes.
1022 #         We can deduce the size of the balloon using this formula:
1024 #            logical_vm_size = vm_ram_size - balloon_size
1026 #         From it we have: balloon_size = vm_ram_size - @value
1028 # Returns: - Nothing on success
1029 #          - If the balloon driver is enabled but not functional because the KVM
1030 #            kernel module cannot support it, KvmMissingCap
1031 #          - If no balloon device is present, DeviceNotActive
1033 # Notes: This command just issues a request to the guest.  When it returns,
1034 #        the balloon size may not have changed.  A guest can change the balloon
1035 #        size independent of this command.
1037 # Since: 0.14
1039 # Example:
1041 # -> { "execute": "balloon", "arguments": { "value": 536870912 } }
1042 # <- { "return": {} }
1044 # With a 2.5GiB guest this command inflated the ballon to 3GiB.
1047 { 'command': 'balloon', 'data': {'value': 'int'} }
1050 # @BalloonInfo:
1052 # Information about the guest balloon device.
1054 # @actual: the logical size of the VM in bytes
1055 #          Formula used: logical_vm_size = vm_ram_size - balloon_size
1057 # Since: 0.14
1059 { 'struct': 'BalloonInfo', 'data': {'actual': 'int' } }
1062 # @query-balloon:
1064 # Return information about the balloon device.
1066 # Returns: - @BalloonInfo on success
1067 #          - If the balloon driver is enabled but not functional because the KVM
1068 #            kernel module cannot support it, KvmMissingCap
1069 #          - If no balloon device is present, DeviceNotActive
1071 # Since: 0.14
1073 # Example:
1075 # -> { "execute": "query-balloon" }
1076 # <- { "return": {
1077 #          "actual": 1073741824
1078 #       }
1079 #    }
1082 { 'command': 'query-balloon', 'returns': 'BalloonInfo' }
1085 # @BALLOON_CHANGE:
1087 # Emitted when the guest changes the actual BALLOON level. This value is
1088 # equivalent to the @actual field return by the 'query-balloon' command
1090 # @actual: the logical size of the VM in bytes
1091 #          Formula used: logical_vm_size = vm_ram_size - balloon_size
1093 # Note: this event is rate-limited.
1095 # Since: 1.2
1097 # Example:
1099 # <- { "event": "BALLOON_CHANGE",
1100 #      "data": { "actual": 944766976 },
1101 #      "timestamp": { "seconds": 1267020223, "microseconds": 435656 } }
1104 { 'event': 'BALLOON_CHANGE',
1105   'data': { 'actual': 'int' } }
1108 # @MemoryInfo:
1110 # Actual memory information in bytes.
1112 # @base-memory: size of "base" memory specified with command line
1113 #               option -m.
1115 # @plugged-memory: size of memory that can be hot-unplugged. This field
1116 #                  is omitted if target doesn't support memory hotplug
1117 #                  (i.e. CONFIG_MEM_DEVICE not defined at build time).
1119 # Since: 2.11
1121 { 'struct': 'MemoryInfo',
1122   'data'  : { 'base-memory': 'size', '*plugged-memory': 'size' } }
1125 # @query-memory-size-summary:
1127 # Return the amount of initially allocated and present hotpluggable (if
1128 # enabled) memory in bytes.
1130 # Example:
1132 # -> { "execute": "query-memory-size-summary" }
1133 # <- { "return": { "base-memory": 4294967296, "plugged-memory": 0 } }
1135 # Since: 2.11
1137 { 'command': 'query-memory-size-summary', 'returns': 'MemoryInfo' }
1140 # @PCDIMMDeviceInfo:
1142 # PCDIMMDevice state information
1144 # @id: device's ID
1146 # @addr: physical address, where device is mapped
1148 # @size: size of memory that the device provides
1150 # @slot: slot number at which device is plugged in
1152 # @node: NUMA node number where device is plugged in
1154 # @memdev: memory backend linked with device
1156 # @hotplugged: true if device was hotplugged
1158 # @hotpluggable: true if device if could be added/removed while machine is running
1160 # Since: 2.1
1162 { 'struct': 'PCDIMMDeviceInfo',
1163   'data': { '*id': 'str',
1164             'addr': 'int',
1165             'size': 'int',
1166             'slot': 'int',
1167             'node': 'int',
1168             'memdev': 'str',
1169             'hotplugged': 'bool',
1170             'hotpluggable': 'bool'
1171           }
1175 # @VirtioPMEMDeviceInfo:
1177 # VirtioPMEM state information
1179 # @id: device's ID
1181 # @memaddr: physical address in memory, where device is mapped
1183 # @size: size of memory that the device provides
1185 # @memdev: memory backend linked with device
1187 # Since: 4.1
1189 { 'struct': 'VirtioPMEMDeviceInfo',
1190   'data': { '*id': 'str',
1191             'memaddr': 'size',
1192             'size': 'size',
1193             'memdev': 'str'
1194           }
1198 # @VirtioMEMDeviceInfo:
1200 # VirtioMEMDevice state information
1202 # @id: device's ID
1204 # @memaddr: physical address in memory, where device is mapped
1206 # @requested-size: the user requested size of the device
1208 # @size: the (current) size of memory that the device provides
1210 # @max-size: the maximum size of memory that the device can provide
1212 # @block-size: the block size of memory that the device provides
1214 # @node: NUMA node number where device is assigned to
1216 # @memdev: memory backend linked with the region
1218 # Since: 5.1
1220 { 'struct': 'VirtioMEMDeviceInfo',
1221   'data': { '*id': 'str',
1222             'memaddr': 'size',
1223             'requested-size': 'size',
1224             'size': 'size',
1225             'max-size': 'size',
1226             'block-size': 'size',
1227             'node': 'int',
1228             'memdev': 'str'
1229           }
1233 # @SgxEPCDeviceInfo:
1235 # Sgx EPC state information
1237 # @id: device's ID
1239 # @memaddr: physical address in memory, where device is mapped
1241 # @size: size of memory that the device provides
1243 # @memdev: memory backend linked with device
1245 # @node: the numa node (Since: 7.0)
1247 # Since: 6.2
1249 { 'struct': 'SgxEPCDeviceInfo',
1250   'data': { '*id': 'str',
1251             'memaddr': 'size',
1252             'size': 'size',
1253             'node': 'int',
1254             'memdev': 'str'
1255           }
1259 # @MemoryDeviceInfoKind:
1261 # Since: 2.1
1263 { 'enum': 'MemoryDeviceInfoKind',
1264   'data': [ 'dimm', 'nvdimm', 'virtio-pmem', 'virtio-mem', 'sgx-epc' ] }
1267 # @PCDIMMDeviceInfoWrapper:
1269 # Since: 2.1
1271 { 'struct': 'PCDIMMDeviceInfoWrapper',
1272   'data': { 'data': 'PCDIMMDeviceInfo' } }
1275 # @VirtioPMEMDeviceInfoWrapper:
1277 # Since: 2.1
1279 { 'struct': 'VirtioPMEMDeviceInfoWrapper',
1280   'data': { 'data': 'VirtioPMEMDeviceInfo' } }
1283 # @VirtioMEMDeviceInfoWrapper:
1285 # Since: 2.1
1287 { 'struct': 'VirtioMEMDeviceInfoWrapper',
1288   'data': { 'data': 'VirtioMEMDeviceInfo' } }
1291 # @SgxEPCDeviceInfoWrapper:
1293 # Since: 6.2
1295 { 'struct': 'SgxEPCDeviceInfoWrapper',
1296   'data': { 'data': 'SgxEPCDeviceInfo' } }
1299 # @MemoryDeviceInfo:
1301 # Union containing information about a memory device
1303 # nvdimm is included since 2.12. virtio-pmem is included since 4.1.
1304 # virtio-mem is included since 5.1. sgx-epc is included since 6.2.
1306 # Since: 2.1
1308 { 'union': 'MemoryDeviceInfo',
1309   'base': { 'type': 'MemoryDeviceInfoKind' },
1310   'discriminator': 'type',
1311   'data': { 'dimm': 'PCDIMMDeviceInfoWrapper',
1312             'nvdimm': 'PCDIMMDeviceInfoWrapper',
1313             'virtio-pmem': 'VirtioPMEMDeviceInfoWrapper',
1314             'virtio-mem': 'VirtioMEMDeviceInfoWrapper',
1315             'sgx-epc': 'SgxEPCDeviceInfoWrapper'
1316           }
1320 # @SgxEPC:
1322 # Sgx EPC cmdline information
1324 # @memdev: memory backend linked with device
1326 # @node: the numa node (Since: 7.0)
1328 # Since: 6.2
1330 { 'struct': 'SgxEPC',
1331   'data': { 'memdev': 'str',
1332             'node': 'int'
1333           }
1337 # @SgxEPCProperties:
1339 # SGX properties of machine types.
1341 # @sgx-epc: list of ids of memory-backend-epc objects.
1343 # Since: 6.2
1345 { 'struct': 'SgxEPCProperties',
1346   'data': { 'sgx-epc': ['SgxEPC'] }
1350 # @query-memory-devices:
1352 # Lists available memory devices and their state
1354 # Since: 2.1
1356 # Example:
1358 # -> { "execute": "query-memory-devices" }
1359 # <- { "return": [ { "data":
1360 #                       { "addr": 5368709120,
1361 #                         "hotpluggable": true,
1362 #                         "hotplugged": true,
1363 #                         "id": "d1",
1364 #                         "memdev": "/objects/memX",
1365 #                         "node": 0,
1366 #                         "size": 1073741824,
1367 #                         "slot": 0},
1368 #                    "type": "dimm"
1369 #                  } ] }
1372 { 'command': 'query-memory-devices', 'returns': ['MemoryDeviceInfo'] }
1375 # @MEMORY_DEVICE_SIZE_CHANGE:
1377 # Emitted when the size of a memory device changes. Only emitted for memory
1378 # devices that can actually change the size (e.g., virtio-mem due to guest
1379 # action).
1381 # @id: device's ID
1383 # @size: the new size of memory that the device provides
1385 # @qom-path: path to the device object in the QOM tree (since 6.2)
1387 # Note: this event is rate-limited.
1389 # Since: 5.1
1391 # Example:
1393 # <- { "event": "MEMORY_DEVICE_SIZE_CHANGE",
1394 #      "data": { "id": "vm0", "size": 1073741824,
1395 #                "qom-path": "/machine/unattached/device[2]" },
1396 #      "timestamp": { "seconds": 1588168529, "microseconds": 201316 } }
1399 { 'event': 'MEMORY_DEVICE_SIZE_CHANGE',
1400   'data': { '*id': 'str', 'size': 'size', 'qom-path' : 'str'} }
1403 # @MEM_UNPLUG_ERROR:
1405 # Emitted when memory hot unplug error occurs.
1407 # @device: device name
1409 # @msg: Informative message
1411 # Features:
1412 # @deprecated: This event is deprecated. Use @DEVICE_UNPLUG_GUEST_ERROR
1413 #              instead.
1415 # Since: 2.4
1417 # Example:
1419 # <- { "event": "MEM_UNPLUG_ERROR",
1420 #      "data": { "device": "dimm1",
1421 #                "msg": "acpi: device unplug for unsupported device"
1422 #      },
1423 #      "timestamp": { "seconds": 1265044230, "microseconds": 450486 } }
1426 { 'event': 'MEM_UNPLUG_ERROR',
1427   'data': { 'device': 'str', 'msg': 'str' },
1428   'features': ['deprecated'] }
1431 # @BootConfiguration:
1433 # Schema for virtual machine boot configuration.
1435 # @order: Boot order (a=floppy, c=hard disk, d=CD-ROM, n=network)
1437 # @once: Boot order to apply on first boot
1439 # @menu: Whether to show a boot menu
1441 # @splash: The name of the file to be passed to the firmware as logo picture, if @menu is true.
1443 # @splash-time: How long to show the logo picture, in milliseconds
1445 # @reboot-timeout: Timeout before guest reboots after boot fails
1447 # @strict: Whether to attempt booting from devices not included in the boot order
1449 # Since: 7.1
1451 { 'struct': 'BootConfiguration', 'data': {
1452      '*order': 'str',
1453      '*once': 'str',
1454      '*menu': 'bool',
1455      '*splash': 'str',
1456      '*splash-time': 'int',
1457      '*reboot-timeout': 'int',
1458      '*strict': 'bool' } }
1461 # @SMPConfiguration:
1463 # Schema for CPU topology configuration.  A missing value lets
1464 # QEMU figure out a suitable value based on the ones that are provided.
1466 # @cpus: number of virtual CPUs in the virtual machine
1468 # @sockets: number of sockets in the CPU topology
1470 # @dies: number of dies per socket in the CPU topology
1472 # @clusters: number of clusters per die in the CPU topology (since 7.0)
1474 # @cores: number of cores per cluster in the CPU topology
1476 # @threads: number of threads per core in the CPU topology
1478 # @maxcpus: maximum number of hotpluggable virtual CPUs in the virtual machine
1480 # Since: 6.1
1482 { 'struct': 'SMPConfiguration', 'data': {
1483      '*cpus': 'int',
1484      '*sockets': 'int',
1485      '*dies': 'int',
1486      '*clusters': 'int',
1487      '*cores': 'int',
1488      '*threads': 'int',
1489      '*maxcpus': 'int' } }
1492 # @x-query-irq:
1494 # Query interrupt statistics
1496 # Features:
1497 # @unstable: This command is meant for debugging.
1499 # Returns: interrupt statistics
1501 # Since: 6.2
1503 { 'command': 'x-query-irq',
1504   'returns': 'HumanReadableText',
1505   'features': [ 'unstable' ] }
1508 # @x-query-jit:
1510 # Query TCG compiler statistics
1512 # Features:
1513 # @unstable: This command is meant for debugging.
1515 # Returns: TCG compiler statistics
1517 # Since: 6.2
1519 { 'command': 'x-query-jit',
1520   'returns': 'HumanReadableText',
1521   'if': 'CONFIG_TCG',
1522   'features': [ 'unstable' ] }
1525 # @x-query-numa:
1527 # Query NUMA topology information
1529 # Features:
1530 # @unstable: This command is meant for debugging.
1532 # Returns: topology information
1534 # Since: 6.2
1536 { 'command': 'x-query-numa',
1537   'returns': 'HumanReadableText',
1538   'features': [ 'unstable' ] }
1541 # @x-query-opcount:
1543 # Query TCG opcode counters
1545 # Features:
1546 # @unstable: This command is meant for debugging.
1548 # Returns: TCG opcode counters
1550 # Since: 6.2
1552 { 'command': 'x-query-opcount',
1553   'returns': 'HumanReadableText',
1554   'if': 'CONFIG_TCG',
1555   'features': [ 'unstable' ] }
1558 # @x-query-profile:
1560 # Query TCG profiling information
1562 # Features:
1563 # @unstable: This command is meant for debugging.
1565 # Returns: profile information
1567 # Since: 6.2
1569 { 'command': 'x-query-profile',
1570   'returns': 'HumanReadableText',
1571   'if': 'CONFIG_TCG',
1572   'features': [ 'unstable' ] }
1575 # @x-query-ramblock:
1577 # Query system ramblock information
1579 # Features:
1580 # @unstable: This command is meant for debugging.
1582 # Returns: system ramblock information
1584 # Since: 6.2
1586 { 'command': 'x-query-ramblock',
1587   'returns': 'HumanReadableText',
1588   'features': [ 'unstable' ] }
1591 # @x-query-rdma:
1593 # Query RDMA state
1595 # Features:
1596 # @unstable: This command is meant for debugging.
1598 # Returns: RDMA state
1600 # Since: 6.2
1602 { 'command': 'x-query-rdma',
1603   'returns': 'HumanReadableText',
1604   'features': [ 'unstable' ] }
1607 # @x-query-roms:
1609 # Query information on the registered ROMS
1611 # Features:
1612 # @unstable: This command is meant for debugging.
1614 # Returns: registered ROMs
1616 # Since: 6.2
1618 { 'command': 'x-query-roms',
1619   'returns': 'HumanReadableText',
1620   'features': [ 'unstable' ] }
1623 # @x-query-usb:
1625 # Query information on the USB devices
1627 # Features:
1628 # @unstable: This command is meant for debugging.
1630 # Returns: USB device information
1632 # Since: 6.2
1634 { 'command': 'x-query-usb',
1635   'returns': 'HumanReadableText',
1636   'features': [ 'unstable' ] }
1639 # @SmbiosEntryPointType:
1641 # @32: SMBIOS version 2.1 (32-bit) Entry Point
1643 # @64: SMBIOS version 3.0 (64-bit) Entry Point
1645 # Since: 7.0
1647 { 'enum': 'SmbiosEntryPointType',
1648   'data': [ '32', '64' ] }
1651 # @MemorySizeConfiguration:
1653 # Schema for memory size configuration.
1655 # @size: memory size in bytes
1657 # @max-size: maximum hotpluggable memory size in bytes
1659 # @slots: number of available memory slots for hotplug
1661 # Since: 7.1
1663 { 'struct': 'MemorySizeConfiguration', 'data': {
1664      '*size': 'size',
1665      '*max-size': 'size',
1666      '*slots': 'uint64' } }
1669 # @dumpdtb:
1671 # Save the FDT in dtb format.
1673 # @filename: name of the dtb file to be created
1675 # Since: 7.2
1677 # Example:
1678 #   {"execute": "dumpdtb"}
1679 #    "arguments": { "filename": "fdt.dtb" } }
1682 { 'command': 'dumpdtb',
1683   'data': { 'filename': 'str' },
1684   'if': 'CONFIG_FDT' }