virtiofsd: passthrough_ll: create new files in caller's context
[qemu/ar7.git] / qapi / machine.json
blobb3d30bc8162da9a0b60005fdd86b8393ea63063c
1 # -*- Mode: Python -*-
3 # This work is licensed under the terms of the GNU GPL, version 2 or later.
4 # See the COPYING file in the top-level directory.
6 ##
7 # = Machines
8 ##
11 # @SysEmuTarget:
13 # The comprehensive enumeration of QEMU system emulation ("softmmu")
14 # targets. Run "./configure --help" in the project root directory, and
15 # look for the *-softmmu targets near the "--target-list" option. The
16 # individual target constants are not documented here, for the time
17 # being.
19 # Notes: The resulting QMP strings can be appended to the "qemu-system-"
20 #        prefix to produce the corresponding QEMU executable name. This
21 #        is true even for "qemu-system-x86_64".
23 # ppcemb: dropped in 3.1
25 # Since: 3.0
27 { 'enum' : 'SysEmuTarget',
28   'data' : [ 'aarch64', 'alpha', 'arm', 'cris', 'hppa', 'i386', 'lm32',
29              'm68k', 'microblaze', 'microblazeel', 'mips', 'mips64',
30              'mips64el', 'mipsel', 'moxie', 'nios2', 'or1k', 'ppc',
31              'ppc64', 'riscv32', 'riscv64', 's390x', 'sh4',
32              'sh4eb', 'sparc', 'sparc64', 'tricore', 'unicore32',
33              'x86_64', 'xtensa', 'xtensaeb' ] }
36 # @CpuInfoArch:
38 # An enumeration of cpu types that enable additional information during
39 # @query-cpus and @query-cpus-fast.
41 # @s390: since 2.12
43 # @riscv: since 2.12
45 # Since: 2.6
47 { 'enum': 'CpuInfoArch',
48   'data': ['x86', 'sparc', 'ppc', 'mips', 'tricore', 's390', 'riscv', 'other' ] }
51 # @CpuInfo:
53 # Information about a virtual CPU
55 # @CPU: the index of the virtual CPU
57 # @current: this only exists for backwards compatibility and should be ignored
59 # @halted: true if the virtual CPU is in the halt state.  Halt usually refers
60 #          to a processor specific low power mode.
62 # @qom_path: path to the CPU object in the QOM tree (since 2.4)
64 # @thread_id: ID of the underlying host thread
66 # @props: properties describing to which node/socket/core/thread
67 #         virtual CPU belongs to, provided if supported by board (since 2.10)
69 # @arch: architecture of the cpu, which determines which additional fields
70 #        will be listed (since 2.6)
72 # Since: 0.14.0
74 # Notes: @halted is a transient state that changes frequently.  By the time the
75 #        data is sent to the client, the guest may no longer be halted.
77 { 'union': 'CpuInfo',
78   'base': {'CPU': 'int', 'current': 'bool', 'halted': 'bool',
79            'qom_path': 'str', 'thread_id': 'int',
80            '*props': 'CpuInstanceProperties', 'arch': 'CpuInfoArch' },
81   'discriminator': 'arch',
82   'data': { 'x86': 'CpuInfoX86',
83             'sparc': 'CpuInfoSPARC',
84             'ppc': 'CpuInfoPPC',
85             'mips': 'CpuInfoMIPS',
86             'tricore': 'CpuInfoTricore',
87             's390': 'CpuInfoS390',
88             'riscv': 'CpuInfoRISCV' } }
91 # @CpuInfoX86:
93 # Additional information about a virtual i386 or x86_64 CPU
95 # @pc: the 64-bit instruction pointer
97 # Since: 2.6
99 { 'struct': 'CpuInfoX86', 'data': { 'pc': 'int' } }
102 # @CpuInfoSPARC:
104 # Additional information about a virtual SPARC CPU
106 # @pc: the PC component of the instruction pointer
108 # @npc: the NPC component of the instruction pointer
110 # Since: 2.6
112 { 'struct': 'CpuInfoSPARC', 'data': { 'pc': 'int', 'npc': 'int' } }
115 # @CpuInfoPPC:
117 # Additional information about a virtual PPC CPU
119 # @nip: the instruction pointer
121 # Since: 2.6
123 { 'struct': 'CpuInfoPPC', 'data': { 'nip': 'int' } }
126 # @CpuInfoMIPS:
128 # Additional information about a virtual MIPS CPU
130 # @PC: the instruction pointer
132 # Since: 2.6
134 { 'struct': 'CpuInfoMIPS', 'data': { 'PC': 'int' } }
137 # @CpuInfoTricore:
139 # Additional information about a virtual Tricore CPU
141 # @PC: the instruction pointer
143 # Since: 2.6
145 { 'struct': 'CpuInfoTricore', 'data': { 'PC': 'int' } }
148 # @CpuInfoRISCV:
150 # Additional information about a virtual RISCV CPU
152 # @pc: the instruction pointer
154 # Since 2.12
156 { 'struct': 'CpuInfoRISCV', 'data': { 'pc': 'int' } }
159 # @CpuS390State:
161 # An enumeration of cpu states that can be assumed by a virtual
162 # S390 CPU
164 # Since: 2.12
166 { 'enum': 'CpuS390State',
167   'prefix': 'S390_CPU_STATE',
168   'data': [ 'uninitialized', 'stopped', 'check-stop', 'operating', 'load' ] }
171 # @CpuInfoS390:
173 # Additional information about a virtual S390 CPU
175 # @cpu-state: the virtual CPU's state
177 # Since: 2.12
179 { 'struct': 'CpuInfoS390', 'data': { 'cpu-state': 'CpuS390State' } }
182 # @query-cpus:
184 # Returns a list of information about each virtual CPU.
186 # This command causes vCPU threads to exit to userspace, which causes
187 # a small interruption to guest CPU execution. This will have a negative
188 # impact on realtime guests and other latency sensitive guest workloads.
189 # It is recommended to use @query-cpus-fast instead of this command to
190 # avoid the vCPU interruption.
192 # Returns: a list of @CpuInfo for each virtual CPU
194 # Since: 0.14.0
196 # Example:
198 # -> { "execute": "query-cpus" }
199 # <- { "return": [
200 #          {
201 #             "CPU":0,
202 #             "current":true,
203 #             "halted":false,
204 #             "qom_path":"/machine/unattached/device[0]",
205 #             "arch":"x86",
206 #             "pc":3227107138,
207 #             "thread_id":3134
208 #          },
209 #          {
210 #             "CPU":1,
211 #             "current":false,
212 #             "halted":true,
213 #             "qom_path":"/machine/unattached/device[2]",
214 #             "arch":"x86",
215 #             "pc":7108165,
216 #             "thread_id":3135
217 #          }
218 #       ]
219 #    }
221 # Notes: This interface is deprecated (since 2.12.0), and it is strongly
222 #        recommended that you avoid using it. Use @query-cpus-fast to
223 #        obtain information about virtual CPUs.
226 { 'command': 'query-cpus', 'returns': ['CpuInfo'] }
229 # @CpuInfoFast:
231 # Information about a virtual CPU
233 # @cpu-index: index of the virtual CPU
235 # @qom-path: path to the CPU object in the QOM tree
237 # @thread-id: ID of the underlying host thread
239 # @props: properties describing to which node/socket/core/thread
240 #         virtual CPU belongs to, provided if supported by board
242 # @arch: base architecture of the cpu; deprecated since 3.0.0 in favor
243 #        of @target
245 # @target: the QEMU system emulation target, which determines which
246 #          additional fields will be listed (since 3.0)
248 # Since: 2.12
251 { 'union'         : 'CpuInfoFast',
252   'base'          : { 'cpu-index'    : 'int',
253                       'qom-path'     : 'str',
254                       'thread-id'    : 'int',
255                       '*props'       : 'CpuInstanceProperties',
256                       'arch'         : 'CpuInfoArch',
257                       'target'       : 'SysEmuTarget' },
258   'discriminator' : 'target',
259   'data'          : { 's390x'        : 'CpuInfoS390' } }
262 # @query-cpus-fast:
264 # Returns information about all virtual CPUs. This command does not
265 # incur a performance penalty and should be used in production
266 # instead of query-cpus.
268 # Returns: list of @CpuInfoFast
270 # Since: 2.12
272 # Example:
274 # -> { "execute": "query-cpus-fast" }
275 # <- { "return": [
276 #         {
277 #             "thread-id": 25627,
278 #             "props": {
279 #                 "core-id": 0,
280 #                 "thread-id": 0,
281 #                 "socket-id": 0
282 #             },
283 #             "qom-path": "/machine/unattached/device[0]",
284 #             "arch":"x86",
285 #             "target":"x86_64",
286 #             "cpu-index": 0
287 #         },
288 #         {
289 #             "thread-id": 25628,
290 #             "props": {
291 #                 "core-id": 0,
292 #                 "thread-id": 0,
293 #                 "socket-id": 1
294 #             },
295 #             "qom-path": "/machine/unattached/device[2]",
296 #             "arch":"x86",
297 #             "target":"x86_64",
298 #             "cpu-index": 1
299 #         }
300 #     ]
301 # }
303 { 'command': 'query-cpus-fast', 'returns': [ 'CpuInfoFast' ] }
306 # @cpu-add:
308 # Adds CPU with specified ID.
310 # @id: ID of CPU to be created, valid values [0..max_cpus)
312 # Returns: Nothing on success
314 # Since: 1.5
316 # Note: This command is deprecated.  The `device_add` command should be
317 #       used instead.  See the `query-hotpluggable-cpus` command for
318 #       details.
320 # Example:
322 # -> { "execute": "cpu-add", "arguments": { "id": 2 } }
323 # <- { "return": {} }
326 { 'command': 'cpu-add', 'data': {'id': 'int'} }
329 # @MachineInfo:
331 # Information describing a machine.
333 # @name: the name of the machine
335 # @alias: an alias for the machine name
337 # @is-default: whether the machine is default
339 # @cpu-max: maximum number of CPUs supported by the machine type
340 #           (since 1.5.0)
342 # @hotpluggable-cpus: cpu hotplug via -device is supported (since 2.7.0)
344 # @numa-mem-supported: true if '-numa node,mem' option is supported by
345 #                      the machine type and false otherwise (since 4.1)
347 # @deprecated: if true, the machine type is deprecated and may be removed
348 #              in future versions of QEMU according to the QEMU deprecation
349 #              policy (since 4.1.0)
351 # @default-cpu-type: default CPU model typename if none is requested via
352 #                    the -cpu argument. (since 4.2)
354 # Since: 1.2.0
356 { 'struct': 'MachineInfo',
357   'data': { 'name': 'str', '*alias': 'str',
358             '*is-default': 'bool', 'cpu-max': 'int',
359             'hotpluggable-cpus': 'bool',  'numa-mem-supported': 'bool',
360             'deprecated': 'bool', '*default-cpu-type': 'str' } }
363 # @query-machines:
365 # Return a list of supported machines
367 # Returns: a list of MachineInfo
369 # Since: 1.2.0
371 { 'command': 'query-machines', 'returns': ['MachineInfo'] }
374 # @CurrentMachineParams:
376 # Information describing the running machine parameters.
378 # @wakeup-suspend-support: true if the machine supports wake up from
379 #                          suspend
381 # Since: 4.0
383 { 'struct': 'CurrentMachineParams',
384   'data': { 'wakeup-suspend-support': 'bool'} }
387 # @query-current-machine:
389 # Return information on the current virtual machine.
391 # Returns: CurrentMachineParams
393 # Since: 4.0
395 { 'command': 'query-current-machine', 'returns': 'CurrentMachineParams' }
398 # @TargetInfo:
400 # Information describing the QEMU target.
402 # @arch: the target architecture
404 # Since: 1.2.0
406 { 'struct': 'TargetInfo',
407   'data': { 'arch': 'SysEmuTarget' } }
410 # @query-target:
412 # Return information about the target for this QEMU
414 # Returns: TargetInfo
416 # Since: 1.2.0
418 { 'command': 'query-target', 'returns': 'TargetInfo' }
421 # @NumaOptionsType:
423 # @node: NUMA nodes configuration
425 # @dist: NUMA distance configuration (since 2.10)
427 # @cpu: property based CPU(s) to node mapping (Since: 2.10)
429 # @hmat-lb: memory latency and bandwidth information (Since: 5.0)
431 # @hmat-cache: memory side cache information (Since: 5.0)
433 # Since: 2.1
435 { 'enum': 'NumaOptionsType',
436   'data': [ 'node', 'dist', 'cpu', 'hmat-lb', 'hmat-cache' ] }
439 # @NumaOptions:
441 # A discriminated record of NUMA options. (for OptsVisitor)
443 # Since: 2.1
445 { 'union': 'NumaOptions',
446   'base': { 'type': 'NumaOptionsType' },
447   'discriminator': 'type',
448   'data': {
449     'node': 'NumaNodeOptions',
450     'dist': 'NumaDistOptions',
451     'cpu': 'NumaCpuOptions',
452     'hmat-lb': 'NumaHmatLBOptions',
453     'hmat-cache': 'NumaHmatCacheOptions' }}
456 # @NumaNodeOptions:
458 # Create a guest NUMA node. (for OptsVisitor)
460 # @nodeid: NUMA node ID (increase by 1 from 0 if omitted)
462 # @cpus: VCPUs belonging to this node (assign VCPUS round-robin
463 #         if omitted)
465 # @mem: memory size of this node; mutually exclusive with @memdev.
466 #       Equally divide total memory among nodes if both @mem and @memdev are
467 #       omitted.
469 # @memdev: memory backend object.  If specified for one node,
470 #          it must be specified for all nodes.
472 # @initiator: defined in ACPI 6.3 Chapter 5.2.27.3 Table 5-145,
473 #             points to the nodeid which has the memory controller
474 #             responsible for this NUMA node. This field provides
475 #             additional information as to the initiator node that
476 #             is closest (as in directly attached) to this node, and
477 #             therefore has the best performance (since 5.0)
479 # Since: 2.1
481 { 'struct': 'NumaNodeOptions',
482   'data': {
483    '*nodeid': 'uint16',
484    '*cpus':   ['uint16'],
485    '*mem':    'size',
486    '*memdev': 'str',
487    '*initiator': 'uint16' }}
490 # @NumaDistOptions:
492 # Set the distance between 2 NUMA nodes.
494 # @src: source NUMA node.
496 # @dst: destination NUMA node.
498 # @val: NUMA distance from source node to destination node.
499 #       When a node is unreachable from another node, set the distance
500 #       between them to 255.
502 # Since: 2.10
504 { 'struct': 'NumaDistOptions',
505   'data': {
506    'src': 'uint16',
507    'dst': 'uint16',
508    'val': 'uint8' }}
511 # @X86CPURegister32:
513 # A X86 32-bit register
515 # Since: 1.5
517 { 'enum': 'X86CPURegister32',
518   'data': [ 'EAX', 'EBX', 'ECX', 'EDX', 'ESP', 'EBP', 'ESI', 'EDI' ] }
521 # @X86CPUFeatureWordInfo:
523 # Information about a X86 CPU feature word
525 # @cpuid-input-eax: Input EAX value for CPUID instruction for that feature word
527 # @cpuid-input-ecx: Input ECX value for CPUID instruction for that
528 #                   feature word
530 # @cpuid-register: Output register containing the feature bits
532 # @features: value of output register, containing the feature bits
534 # Since: 1.5
536 { 'struct': 'X86CPUFeatureWordInfo',
537   'data': { 'cpuid-input-eax': 'int',
538             '*cpuid-input-ecx': 'int',
539             'cpuid-register': 'X86CPURegister32',
540             'features': 'int' } }
543 # @DummyForceArrays:
545 # Not used by QMP; hack to let us use X86CPUFeatureWordInfoList internally
547 # Since: 2.5
549 { 'struct': 'DummyForceArrays',
550   'data': { 'unused': ['X86CPUFeatureWordInfo'] } }
553 # @NumaCpuOptions:
555 # Option "-numa cpu" overrides default cpu to node mapping.
556 # It accepts the same set of cpu properties as returned by
557 # query-hotpluggable-cpus[].props, where node-id could be used to
558 # override default node mapping.
560 # Since: 2.10
562 { 'struct': 'NumaCpuOptions',
563    'base': 'CpuInstanceProperties',
564    'data' : {} }
567 # @HmatLBMemoryHierarchy:
569 # The memory hierarchy in the System Locality Latency and Bandwidth
570 # Information Structure of HMAT (Heterogeneous Memory Attribute Table)
572 # For more information about @HmatLBMemoryHierarchy, see chapter
573 # 5.2.27.4: Table 5-146: Field "Flags" of ACPI 6.3 spec.
575 # @memory: the structure represents the memory performance
577 # @first-level: first level of memory side cache
579 # @second-level: second level of memory side cache
581 # @third-level: third level of memory side cache
583 # Since: 5.0
585 { 'enum': 'HmatLBMemoryHierarchy',
586   'data': [ 'memory', 'first-level', 'second-level', 'third-level' ] }
589 # @HmatLBDataType:
591 # Data type in the System Locality Latency and Bandwidth
592 # Information Structure of HMAT (Heterogeneous Memory Attribute Table)
594 # For more information about @HmatLBDataType, see chapter
595 # 5.2.27.4: Table 5-146:  Field "Data Type" of ACPI 6.3 spec.
597 # @access-latency: access latency (nanoseconds)
599 # @read-latency: read latency (nanoseconds)
601 # @write-latency: write latency (nanoseconds)
603 # @access-bandwidth: access bandwidth (Bytes per second)
605 # @read-bandwidth: read bandwidth (Bytes per second)
607 # @write-bandwidth: write bandwidth (Bytes per second)
609 # Since: 5.0
611 { 'enum': 'HmatLBDataType',
612   'data': [ 'access-latency', 'read-latency', 'write-latency',
613             'access-bandwidth', 'read-bandwidth', 'write-bandwidth' ] }
616 # @NumaHmatLBOptions:
618 # Set the system locality latency and bandwidth information
619 # between Initiator and Target proximity Domains.
621 # For more information about @NumaHmatLBOptions, see chapter
622 # 5.2.27.4: Table 5-146 of ACPI 6.3 spec.
624 # @initiator: the Initiator Proximity Domain.
626 # @target: the Target Proximity Domain.
628 # @hierarchy: the Memory Hierarchy. Indicates the performance
629 #             of memory or side cache.
631 # @data-type: presents the type of data, access/read/write
632 #             latency or hit latency.
634 # @latency: the value of latency from @initiator to @target
635 #           proximity domain, the latency unit is "ns(nanosecond)".
637 # @bandwidth: the value of bandwidth between @initiator and @target
638 #             proximity domain, the bandwidth unit is
639 #             "Bytes per second".
641 # Since: 5.0
643 { 'struct': 'NumaHmatLBOptions',
644     'data': {
645     'initiator': 'uint16',
646     'target': 'uint16',
647     'hierarchy': 'HmatLBMemoryHierarchy',
648     'data-type': 'HmatLBDataType',
649     '*latency': 'uint64',
650     '*bandwidth': 'size' }}
653 # @HmatCacheAssociativity:
655 # Cache associativity in the Memory Side Cache Information Structure
656 # of HMAT
658 # For more information of @HmatCacheAssociativity, see chapter
659 # 5.2.27.5: Table 5-147 of ACPI 6.3 spec.
661 # @none: None (no memory side cache in this proximity domain,
662 #              or cache associativity unknown)
664 # @direct: Direct Mapped
666 # @complex: Complex Cache Indexing (implementation specific)
668 # Since: 5.0
670 { 'enum': 'HmatCacheAssociativity',
671   'data': [ 'none', 'direct', 'complex' ] }
674 # @HmatCacheWritePolicy:
676 # Cache write policy in the Memory Side Cache Information Structure
677 # of HMAT
679 # For more information of @HmatCacheWritePolicy, see chapter
680 # 5.2.27.5: Table 5-147: Field "Cache Attributes" of ACPI 6.3 spec.
682 # @none: None (no memory side cache in this proximity domain,
683 #              or cache write policy unknown)
685 # @write-back: Write Back (WB)
687 # @write-through: Write Through (WT)
689 # Since: 5.0
691 { 'enum': 'HmatCacheWritePolicy',
692   'data': [ 'none', 'write-back', 'write-through' ] }
695 # @NumaHmatCacheOptions:
697 # Set the memory side cache information for a given memory domain.
699 # For more information of @NumaHmatCacheOptions, see chapter
700 # 5.2.27.5: Table 5-147: Field "Cache Attributes" of ACPI 6.3 spec.
702 # @node-id: the memory proximity domain to which the memory belongs.
704 # @size: the size of memory side cache in bytes.
706 # @level: the cache level described in this structure.
708 # @associativity: the cache associativity,
709 #         none/direct-mapped/complex(complex cache indexing).
711 # @policy: the write policy, none/write-back/write-through.
713 # @line: the cache Line size in bytes.
715 # Since: 5.0
717 { 'struct': 'NumaHmatCacheOptions',
718   'data': {
719    'node-id': 'uint32',
720    'size': 'size',
721    'level': 'uint8',
722    'associativity': 'HmatCacheAssociativity',
723    'policy': 'HmatCacheWritePolicy',
724    'line': 'uint16' }}
727 # @HostMemPolicy:
729 # Host memory policy types
731 # @default: restore default policy, remove any nondefault policy
733 # @preferred: set the preferred host nodes for allocation
735 # @bind: a strict policy that restricts memory allocation to the
736 #        host nodes specified
738 # @interleave: memory allocations are interleaved across the set
739 #              of host nodes specified
741 # Since: 2.1
743 { 'enum': 'HostMemPolicy',
744   'data': [ 'default', 'preferred', 'bind', 'interleave' ] }
747 # @Memdev:
749 # Information about memory backend
751 # @id: backend's ID if backend has 'id' property (since 2.9)
753 # @size: memory backend size
755 # @merge: enables or disables memory merge support
757 # @dump: includes memory backend's memory in a core dump or not
759 # @prealloc: enables or disables memory preallocation
761 # @host-nodes: host nodes for its memory policy
763 # @policy: memory policy of memory backend
765 # Since: 2.1
767 { 'struct': 'Memdev',
768   'data': {
769     '*id':        'str',
770     'size':       'size',
771     'merge':      'bool',
772     'dump':       'bool',
773     'prealloc':   'bool',
774     'host-nodes': ['uint16'],
775     'policy':     'HostMemPolicy' }}
778 # @query-memdev:
780 # Returns information for all memory backends.
782 # Returns: a list of @Memdev.
784 # Since: 2.1
786 # Example:
788 # -> { "execute": "query-memdev" }
789 # <- { "return": [
790 #        {
791 #          "id": "mem1",
792 #          "size": 536870912,
793 #          "merge": false,
794 #          "dump": true,
795 #          "prealloc": false,
796 #          "host-nodes": [0, 1],
797 #          "policy": "bind"
798 #        },
799 #        {
800 #          "size": 536870912,
801 #          "merge": false,
802 #          "dump": true,
803 #          "prealloc": true,
804 #          "host-nodes": [2, 3],
805 #          "policy": "preferred"
806 #        }
807 #      ]
808 #    }
811 { 'command': 'query-memdev', 'returns': ['Memdev'], 'allow-preconfig': true }
814 # @CpuInstanceProperties:
816 # List of properties to be used for hotplugging a CPU instance,
817 # it should be passed by management with device_add command when
818 # a CPU is being hotplugged.
820 # @node-id: NUMA node ID the CPU belongs to
821 # @socket-id: socket number within node/board the CPU belongs to
822 # @die-id: die number within node/board the CPU belongs to (Since 4.1)
823 # @core-id: core number within die the CPU belongs to# @thread-id: thread number within core the CPU belongs to
825 # Note: currently there are 5 properties that could be present
826 # but management should be prepared to pass through other
827 # properties with device_add command to allow for future
828 # interface extension. This also requires the filed names to be kept in
829 # sync with the properties passed to -device/device_add.
831 # Since: 2.7
833 { 'struct': 'CpuInstanceProperties',
834   'data': { '*node-id': 'int',
835             '*socket-id': 'int',
836             '*die-id': 'int',
837             '*core-id': 'int',
838             '*thread-id': 'int'
839   }
843 # @HotpluggableCPU:
845 # @type: CPU object type for usage with device_add command
846 # @props: list of properties to be used for hotplugging CPU
847 # @vcpus-count: number of logical VCPU threads @HotpluggableCPU provides
848 # @qom-path: link to existing CPU object if CPU is present or
849 #            omitted if CPU is not present.
851 # Since: 2.7
853 { 'struct': 'HotpluggableCPU',
854   'data': { 'type': 'str',
855             'vcpus-count': 'int',
856             'props': 'CpuInstanceProperties',
857             '*qom-path': 'str'
858           }
862 # @query-hotpluggable-cpus:
864 # TODO: Better documentation; currently there is none.
866 # Returns: a list of HotpluggableCPU objects.
868 # Since: 2.7
870 # Example:
872 # For pseries machine type started with -smp 2,cores=2,maxcpus=4 -cpu POWER8:
874 # -> { "execute": "query-hotpluggable-cpus" }
875 # <- {"return": [
876 #      { "props": { "core": 8 }, "type": "POWER8-spapr-cpu-core",
877 #        "vcpus-count": 1 },
878 #      { "props": { "core": 0 }, "type": "POWER8-spapr-cpu-core",
879 #        "vcpus-count": 1, "qom-path": "/machine/unattached/device[0]"}
880 #    ]}'
882 # For pc machine type started with -smp 1,maxcpus=2:
884 # -> { "execute": "query-hotpluggable-cpus" }
885 # <- {"return": [
886 #      {
887 #         "type": "qemu64-x86_64-cpu", "vcpus-count": 1,
888 #         "props": {"core-id": 0, "socket-id": 1, "thread-id": 0}
889 #      },
890 #      {
891 #         "qom-path": "/machine/unattached/device[0]",
892 #         "type": "qemu64-x86_64-cpu", "vcpus-count": 1,
893 #         "props": {"core-id": 0, "socket-id": 0, "thread-id": 0}
894 #      }
895 #    ]}
897 # For s390x-virtio-ccw machine type started with -smp 1,maxcpus=2 -cpu qemu
898 # (Since: 2.11):
900 # -> { "execute": "query-hotpluggable-cpus" }
901 # <- {"return": [
902 #      {
903 #         "type": "qemu-s390x-cpu", "vcpus-count": 1,
904 #         "props": { "core-id": 1 }
905 #      },
906 #      {
907 #         "qom-path": "/machine/unattached/device[0]",
908 #         "type": "qemu-s390x-cpu", "vcpus-count": 1,
909 #         "props": { "core-id": 0 }
910 #      }
911 #    ]}
914 { 'command': 'query-hotpluggable-cpus', 'returns': ['HotpluggableCPU'],
915              'allow-preconfig': true }
918 # @set-numa-node:
920 # Runtime equivalent of '-numa' CLI option, available at
921 # preconfigure stage to configure numa mapping before initializing
922 # machine.
924 # Since 3.0
926 { 'command': 'set-numa-node', 'boxed': true,
927   'data': 'NumaOptions',
928   'allow-preconfig': true