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.
11 { 'include': 'common.json' }
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
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".
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' ] }
42 # An enumeration of cpu states that can be assumed by a virtual
47 { 'enum': 'CpuS390State',
48 'prefix': 'S390_CPU_STATE',
49 'data': [ 'uninitialized', 'stopped', 'check-stop', 'operating', 'load' ] }
54 # Additional information about a virtual S390 CPU
56 # @cpu-state: the virtual CPU's state
60 { 'struct': 'CpuInfoS390', 'data': { 'cpu-state': 'CpuS390State' } }
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)
81 { 'union' : 'CpuInfoFast',
82 'base' : { 'cpu-index' : 'int',
85 '*props' : 'CpuInstanceProperties',
86 'target' : 'SysEmuTarget' },
87 'discriminator' : 'target',
88 'data' : { 's390x' : 'CpuInfoS390' } }
93 # Returns information about all virtual CPUs.
95 # Returns: list of @CpuInfoFast
101 # -> { "execute": "query-cpus-fast" }
104 # "thread-id": 25627,
110 # "qom-path": "/machine/unattached/device[0]",
115 # "thread-id": 25628,
121 # "qom-path": "/machine/unattached/device[2]",
128 { 'command': 'query-cpus-fast', 'returns': [ 'CpuInfoFast' ] }
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
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
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)
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' } }
170 # Return a list of supported machines
172 # Returns: a list of MachineInfo
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
188 { 'struct': 'CurrentMachineParams',
189 'data': { 'wakeup-suspend-support': 'bool'} }
192 # @query-current-machine:
194 # Return information on the current virtual machine.
196 # Returns: CurrentMachineParams
200 { 'command': 'query-current-machine', 'returns': 'CurrentMachineParams' }
205 # Information describing the QEMU target.
207 # @arch: the target architecture
211 { 'struct': 'TargetInfo',
212 'data': { 'arch': 'SysEmuTarget' } }
217 # Return information about the target for this QEMU
219 # Returns: TargetInfo
223 { 'command': 'query-target', 'returns': 'TargetInfo' }
228 # Guest UUID information (Universally Unique Identifier).
230 # @UUID: the UUID of the guest
234 # Notes: If no UUID was specified for the guest, a null UUID is returned.
236 { 'struct': 'UuidInfo', 'data': {'UUID': 'str'} }
241 # Query the guest UUID information.
243 # Returns: The @UuidInfo for the guest
249 # -> { "execute": "query-uuid" }
250 # <- { "return": { "UUID": "550e8400-e29b-41d4-a716-446655440000" } }
253 { 'command': 'query-uuid', 'returns': 'UuidInfo', 'allow-preconfig': true }
260 # @guid: the globally unique identifier
264 { 'struct': 'GuidInfo', 'data': {'guid': 'str'} }
267 # @query-vm-generation-id:
269 # Show Virtual Machine Generation ID
273 { 'command': 'query-vm-generation-id', 'returns': 'GuidInfo' }
278 # Performs a hard reset of a guest.
284 # -> { "execute": "system_reset" }
285 # <- { "return": {} }
288 { 'command': 'system_reset' }
293 # Requests that a guest perform a powerdown operation.
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.
304 # -> { "execute": "system_powerdown" }
305 # <- { "return": {} }
308 { 'command': 'system_powerdown' }
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.
322 # Note: prior to 4.0, this command does nothing in case the guest
327 # -> { "execute": "system_wakeup" }
328 # <- { "return": {} }
331 { 'command': 'system_wakeup' }
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.
362 { 'enum': 'LostTickPolicy',
363 'data': ['discard', 'delay', 'slew' ] }
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
375 # Note: prior to 2.1, this command was only supported for x86 and s390 VMs
379 # -> { "execute": "inject-nmi" }
380 # <- { "return": {} }
383 { 'command': 'inject-nmi' }
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
396 { 'struct': 'KvmInfo', 'data': {'enabled': 'bool', 'present': 'bool'} }
401 # Returns information about KVM acceleration
409 # -> { "execute": "query-kvm" }
410 # <- { "return": { "enabled": true, "present": true } }
413 { 'command': 'query-kvm', 'returns': 'KvmInfo' }
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)
430 { 'enum': 'NumaOptionsType',
431 'data': [ 'node', 'dist', 'cpu', 'hmat-lb', 'hmat-cache' ] }
436 # A discriminated record of NUMA options. (for OptsVisitor)
440 { 'union': 'NumaOptions',
441 'base': { 'type': 'NumaOptionsType' },
442 'discriminator': 'type',
444 'node': 'NumaNodeOptions',
445 'dist': 'NumaDistOptions',
446 'cpu': 'NumaCpuOptions',
447 'hmat-lb': 'NumaHmatLBOptions',
448 'hmat-cache': 'NumaHmatCacheOptions' }}
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
460 # @mem: memory size of this node; mutually exclusive with @memdev.
461 # Equally divide total memory among nodes if both @mem and @memdev are
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)
476 { 'struct': 'NumaNodeOptions',
482 '*initiator': 'uint16' }}
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.
499 { 'struct': 'NumaDistOptions',
506 # @CXLFixedMemoryWindowOptions:
508 # Create a CXL Fixed Memory Window
510 # @size: Size of the Fixed Memory Window in bytes. Must be a multiple
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
520 { 'struct': 'CXLFixedMemoryWindowOptions',
523 '*interleave-granularity': 'size',
524 'targets': ['str'] }}
529 # List of CXL Fixed Memory Windows.
531 # @cxl-fmw: List of CXLFixedMemoryWindowOptions
535 { 'struct' : 'CXLFMWProperties',
536 'data': { 'cxl-fmw': ['CXLFixedMemoryWindowOptions'] }
542 # A X86 32-bit register
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
559 # @cpuid-register: Output register containing the feature bits
561 # @features: value of output register, containing the feature bits
565 { 'struct': 'X86CPUFeatureWordInfo',
566 'data': { 'cpuid-input-eax': 'int',
567 '*cpuid-input-ecx': 'int',
568 'cpuid-register': 'X86CPURegister32',
569 'features': 'int' } }
574 # Not used by QMP; hack to let us use X86CPUFeatureWordInfoList internally
578 { 'struct': 'DummyForceArrays',
579 'data': { 'unused': ['X86CPUFeatureWordInfo'] } }
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.
591 { 'struct': 'NumaCpuOptions',
592 'base': 'CpuInstanceProperties',
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
614 { 'enum': 'HmatLBMemoryHierarchy',
615 'data': [ 'memory', 'first-level', 'second-level', 'third-level' ] }
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)
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".
672 { 'struct': 'NumaHmatLBOptions',
674 'initiator': '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
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)
699 { 'enum': 'HmatCacheAssociativity',
700 'data': [ 'none', 'direct', 'complex' ] }
703 # @HmatCacheWritePolicy:
705 # Cache write policy in the Memory Side Cache Information Structure
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)
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.
746 { 'struct': 'NumaHmatCacheOptions',
751 'associativity': 'HmatCacheAssociativity',
752 'policy': 'HmatCacheWritePolicy',
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
773 # Notes: Errors were not reliably returned until 1.1
777 # -> { "execute": "memsave",
778 # "arguments": { "val": 10,
780 # "filename": "/tmp/virtual-mem-dump" } }
781 # <- { "return": {} }
784 { 'command': 'memsave',
785 'data': {'val': 'int', 'size': 'int', 'filename': 'str', '*cpu-index': 'int'} }
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
802 # Notes: Errors were not reliably returned until 1.1
806 # -> { "execute": "pmemsave",
807 # "arguments": { "val": 10,
809 # "filename": "/tmp/physical-mem-dump" } }
810 # <- { "return": {} }
813 { 'command': 'pmemsave',
814 'data': {'val': 'int', 'size': 'int', 'filename': 'str'} }
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
845 { 'struct': 'Memdev',
854 'host-nodes': ['uint16'],
855 'policy': 'HostMemPolicy' }}
860 # Returns information for all memory backends.
862 # Returns: a list of @Memdev.
868 # -> { "execute": "query-memdev" }
877 # "host-nodes": [0, 1],
886 # "host-nodes": [2, 3],
887 # "policy": "preferred"
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.
917 { 'struct': 'CpuInstanceProperties',
918 'data': { '*node-id': 'int',
921 '*cluster-id': 'int',
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.
938 { 'struct': 'HotpluggableCPU',
939 'data': { 'type': 'str',
940 'vcpus-count': 'int',
941 'props': 'CpuInstanceProperties',
947 # @query-hotpluggable-cpus:
949 # TODO: Better documentation; currently there is none.
951 # Returns: a list of HotpluggableCPU objects.
957 # For pseries machine type started with -smp 2,cores=2,maxcpus=4 -cpu POWER8:
959 # -> { "execute": "query-hotpluggable-cpus" }
961 # { "props": { "core": 8 }, "type": "POWER8-spapr-cpu-core",
962 # "vcpus-count": 1 },
963 # { "props": { "core": 0 }, "type": "POWER8-spapr-cpu-core",
964 # "vcpus-count": 1, "qom-path": "/machine/unattached/device[0]"}
967 # For pc machine type started with -smp 1,maxcpus=2:
969 # -> { "execute": "query-hotpluggable-cpus" }
972 # "type": "qemu64-x86_64-cpu", "vcpus-count": 1,
973 # "props": {"core-id": 0, "socket-id": 1, "thread-id": 0}
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}
982 # For s390x-virtio-ccw machine type started with -smp 1,maxcpus=2 -cpu qemu
985 # -> { "execute": "query-hotpluggable-cpus" }
988 # "type": "qemu-s390x-cpu", "vcpus-count": 1,
989 # "props": { "core-id": 1 }
992 # "qom-path": "/machine/unattached/device[0]",
993 # "type": "qemu-s390x-cpu", "vcpus-count": 1,
994 # "props": { "core-id": 0 }
999 { 'command': 'query-hotpluggable-cpus', 'returns': ['HotpluggableCPU'],
1000 'allow-preconfig': true }
1005 # Runtime equivalent of '-numa' CLI option, available at
1006 # preconfigure stage to configure numa mapping before initializing
1011 { 'command': 'set-numa-node', 'boxed': true,
1012 'data': 'NumaOptions',
1013 'allow-preconfig': true
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.
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'} }
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
1059 { 'struct': 'BalloonInfo', 'data': {'actual': 'int' } }
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
1075 # -> { "execute": "query-balloon" }
1077 # "actual": 1073741824,
1082 { 'command': 'query-balloon', 'returns': 'BalloonInfo' }
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.
1099 # <- { "event": "BALLOON_CHANGE",
1100 # "data": { "actual": 944766976 },
1101 # "timestamp": { "seconds": 1267020223, "microseconds": 435656 } }
1104 { 'event': 'BALLOON_CHANGE',
1105 'data': { 'actual': 'int' } }
1110 # Actual memory information in bytes.
1112 # @base-memory: size of "base" memory specified with command line
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).
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.
1132 # -> { "execute": "query-memory-size-summary" }
1133 # <- { "return": { "base-memory": 4294967296, "plugged-memory": 0 } }
1137 { 'command': 'query-memory-size-summary', 'returns': 'MemoryInfo' }
1140 # @PCDIMMDeviceInfo:
1142 # PCDIMMDevice state information
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
1162 { 'struct': 'PCDIMMDeviceInfo',
1163 'data': { '*id': 'str',
1169 'hotplugged': 'bool',
1170 'hotpluggable': 'bool'
1175 # @VirtioPMEMDeviceInfo:
1177 # VirtioPMEM state information
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
1189 { 'struct': 'VirtioPMEMDeviceInfo',
1190 'data': { '*id': 'str',
1198 # @VirtioMEMDeviceInfo:
1200 # VirtioMEMDevice state information
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
1220 { 'struct': 'VirtioMEMDeviceInfo',
1221 'data': { '*id': 'str',
1223 'requested-size': 'size',
1226 'block-size': 'size',
1233 # @SgxEPCDeviceInfo:
1235 # Sgx EPC state information
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)
1249 { 'struct': 'SgxEPCDeviceInfo',
1250 'data': { '*id': 'str',
1259 # @MemoryDeviceInfoKind:
1263 { 'enum': 'MemoryDeviceInfoKind',
1264 'data': [ 'dimm', 'nvdimm', 'virtio-pmem', 'virtio-mem', 'sgx-epc' ] }
1267 # @PCDIMMDeviceInfoWrapper:
1271 { 'struct': 'PCDIMMDeviceInfoWrapper',
1272 'data': { 'data': 'PCDIMMDeviceInfo' } }
1275 # @VirtioPMEMDeviceInfoWrapper:
1279 { 'struct': 'VirtioPMEMDeviceInfoWrapper',
1280 'data': { 'data': 'VirtioPMEMDeviceInfo' } }
1283 # @VirtioMEMDeviceInfoWrapper:
1287 { 'struct': 'VirtioMEMDeviceInfoWrapper',
1288 'data': { 'data': 'VirtioMEMDeviceInfo' } }
1291 # @SgxEPCDeviceInfoWrapper:
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.
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'
1322 # Sgx EPC cmdline information
1324 # @memdev: memory backend linked with device
1326 # @node: the numa node (Since: 7.0)
1330 { 'struct': 'SgxEPC',
1331 'data': { 'memdev': 'str',
1337 # @SgxEPCProperties:
1339 # SGX properties of machine types.
1341 # @sgx-epc: list of ids of memory-backend-epc objects.
1345 { 'struct': 'SgxEPCProperties',
1346 'data': { 'sgx-epc': ['SgxEPC'] }
1350 # @query-memory-devices:
1352 # Lists available memory devices and their state
1358 # -> { "execute": "query-memory-devices" }
1359 # <- { "return": [ { "data":
1360 # { "addr": 5368709120,
1361 # "hotpluggable": true,
1362 # "hotplugged": true,
1364 # "memdev": "/objects/memX",
1366 # "size": 1073741824,
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
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.
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
1412 # @deprecated: This event is deprecated. Use @DEVICE_UNPLUG_GUEST_ERROR
1419 # <- { "event": "MEM_UNPLUG_ERROR"
1420 # "data": { "device": "dimm1",
1421 # "msg": "acpi: device unplug for unsupported device"
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
1451 { 'struct': 'BootConfiguration', 'data': {
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
1482 { 'struct': 'SMPConfiguration', 'data': {
1489 '*maxcpus': 'int' } }
1494 # Query interrupt statistics
1497 # @unstable: This command is meant for debugging.
1499 # Returns: interrupt statistics
1503 { 'command': 'x-query-irq',
1504 'returns': 'HumanReadableText',
1505 'features': [ 'unstable' ] }
1510 # Query TCG compiler statistics
1513 # @unstable: This command is meant for debugging.
1515 # Returns: TCG compiler statistics
1519 { 'command': 'x-query-jit',
1520 'returns': 'HumanReadableText',
1522 'features': [ 'unstable' ] }
1527 # Query NUMA topology information
1530 # @unstable: This command is meant for debugging.
1532 # Returns: topology information
1536 { 'command': 'x-query-numa',
1537 'returns': 'HumanReadableText',
1538 'features': [ 'unstable' ] }
1543 # Query TCG opcode counters
1546 # @unstable: This command is meant for debugging.
1548 # Returns: TCG opcode counters
1552 { 'command': 'x-query-opcount',
1553 'returns': 'HumanReadableText',
1555 'features': [ 'unstable' ] }
1560 # Query TCG profiling information
1563 # @unstable: This command is meant for debugging.
1565 # Returns: profile information
1569 { 'command': 'x-query-profile',
1570 'returns': 'HumanReadableText',
1572 'features': [ 'unstable' ] }
1575 # @x-query-ramblock:
1577 # Query system ramblock information
1580 # @unstable: This command is meant for debugging.
1582 # Returns: system ramblock information
1586 { 'command': 'x-query-ramblock',
1587 'returns': 'HumanReadableText',
1588 'features': [ 'unstable' ] }
1596 # @unstable: This command is meant for debugging.
1598 # Returns: RDMA state
1602 { 'command': 'x-query-rdma',
1603 'returns': 'HumanReadableText',
1604 'features': [ 'unstable' ] }
1609 # Query information on the registered ROMS
1612 # @unstable: This command is meant for debugging.
1614 # Returns: registered ROMs
1618 { 'command': 'x-query-roms',
1619 'returns': 'HumanReadableText',
1620 'features': [ 'unstable' ] }
1625 # Query information on the USB devices
1628 # @unstable: This command is meant for debugging.
1630 # Returns: USB device information
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
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
1663 { 'struct': 'MemorySizeConfiguration', 'data': {
1665 '*max-size': 'size',
1666 '*slots': 'uint64' } }