]> git.proxmox.com Git - mirror_qemu.git/blobdiff - qapi/common.json
Merge remote-tracking branch 'remotes/vivier2/tags/trivial-branch-pull-request' into...
[mirror_qemu.git] / qapi / common.json
index 8355d5a2f3f3121af52704c6368e6f8cfa3c6d2a..99d313ef3b59230c04bbfd88c10bfedb5ceadb8e 100644 (file)
@@ -1,7 +1,7 @@
 # -*- Mode: Python -*-
 
 ##
-# = QAPI common definitions
+# = Common data types
 ##
 
 ##
             'DeviceNotActive', 'DeviceNotFound', 'KVMMissingCap' ] }
 
 ##
-# @VersionTriple:
+# @IoOperationType:
 #
-# A three-part version number.
+# An enumeration of the I/O operation types
 #
-# @major:  The major version number.
+# @read: read operation
 #
-# @minor:  The minor version number.
+# @write: write operation
 #
-# @micro:  The micro version number.
-#
-# Since: 2.4
+# Since: 2.1
 ##
-{ 'struct': 'VersionTriple',
-  'data': {'major': 'int', 'minor': 'int', 'micro': 'int'} }
-
+{ 'enum': 'IoOperationType',
+  'data': [ 'read', 'write' ] }
 
 ##
-# @VersionInfo:
+# @OnOffAuto:
 #
-# A description of QEMU's version.
+# An enumeration of three options: on, off, and auto
 #
-# @qemu:        The version of QEMU.  By current convention, a micro
-#               version of 50 signifies a development branch.  A micro version
-#               greater than or equal to 90 signifies a release candidate for
-#               the next minor version.  A micro version of less than 50
-#               signifies a stable release.
+# @auto: QEMU selects the value between on and off
+#
+# @on: Enabled
 #
-# @package:     QEMU will always set this field to an empty string.  Downstream
-#               versions of QEMU should set this to a non-empty string.  The
-#               exact format depends on the downstream however it highly
-#               recommended that a unique name is used.
+# @off: Disabled
 #
-# Since: 0.14.0
+# Since: 2.2
 ##
-{ 'struct': 'VersionInfo',
-  'data': {'qemu': 'VersionTriple', 'package': 'str'} }
+{ 'enum': 'OnOffAuto',
+  'data': [ 'auto', 'on', 'off' ] }
 
 ##
-# @query-version:
+# @OnOffSplit:
+#
+# An enumeration of three values: on, off, and split
 #
-# Returns the current version of QEMU.
+# @on: Enabled
 #
-# Returns:  A @VersionInfo object describing the current version of QEMU.
+# @off: Disabled
 #
-# Since: 0.14.0
+# @split: Mixed
 #
-# Example:
+# Since: 2.6
+##
+{ 'enum': 'OnOffSplit',
+  'data': [ 'on', 'off', 'split' ] }
+
+##
+# @String:
 #
-# -> { "execute": "query-version" }
-# <- {
-#       "return":{
-#          "qemu":{
-#             "major":0,
-#             "minor":11,
-#             "micro":5
-#          },
-#          "package":""
-#       }
-#    }
+# A fat type wrapping 'str', to be embedded in lists.
 #
+# Since: 1.2
 ##
-{ 'command': 'query-version', 'returns': 'VersionInfo' }
+{ 'struct': 'String',
+  'data': {
+    'str': 'str' } }
 
 ##
-# @CommandInfo:
+# @StrOrNull:
 #
-# Information about a QMP command
+# This is a string value or the explicit lack of a string (null
+# pointer in C).  Intended for cases when 'optional absent' already
+# has a different meaning.
 #
-# @name: The command name
+# @s: the string value
+# @n: no string value
 #
-# Since: 0.14.0
+# Since: 2.10
 ##
-{ 'struct': 'CommandInfo', 'data': {'name': 'str'} }
+{ 'alternate': 'StrOrNull',
+  'data': { 's': 'str',
+            'n': 'null' } }
 
 ##
-# @query-commands:
+# @OffAutoPCIBAR:
+#
+# An enumeration of options for specifying a PCI BAR
 #
-# Return a list of supported QMP commands by this server
+# @off: The specified feature is disabled
 #
-# Returns: A list of @CommandInfo for all supported commands
+# @auto: The PCI BAR for the feature is automatically selected
 #
-# Since: 0.14.0
+# @bar0: PCI BAR0 is used for the feature
 #
-# Example:
+# @bar1: PCI BAR1 is used for the feature
 #
-# -> { "execute": "query-commands" }
-# <- {
-#      "return":[
-#         {
-#            "name":"query-balloon"
-#         },
-#         {
-#            "name":"system_powerdown"
-#         }
-#      ]
-#    }
+# @bar2: PCI BAR2 is used for the feature
 #
-# Note: This example has been shortened as the real response is too long.
+# @bar3: PCI BAR3 is used for the feature
 #
+# @bar4: PCI BAR4 is used for the feature
+#
+# @bar5: PCI BAR5 is used for the feature
+#
+# Since: 2.12
 ##
-{ 'command': 'query-commands', 'returns': ['CommandInfo'] }
+{ 'enum': 'OffAutoPCIBAR',
+  'data': [ 'off', 'auto', 'bar0', 'bar1', 'bar2', 'bar3', 'bar4', 'bar5' ] }
 
 ##
-# @OnOffAuto:
+# @PCIELinkSpeed:
 #
-# An enumeration of three options: on, off, and auto
+# An enumeration of PCIe link speeds in units of GT/s
 #
-# @auto: QEMU selects the value between on and off
+# @2_5: 2.5GT/s
 #
-# @on: Enabled
+# @5: 5.0GT/s
 #
-# @off: Disabled
+# @8: 8.0GT/s
 #
-# Since: 2.2
+# @16: 16.0GT/s
+#
+# Since: 4.0
 ##
-{ 'enum': 'OnOffAuto',
-  'data': [ 'auto', 'on', 'off' ] }
+{ 'enum': 'PCIELinkSpeed',
+  'data': [ '2_5', '5', '8', '16' ] }
 
 ##
-# @OnOffSplit:
+# @PCIELinkWidth:
 #
-# An enumeration of three values: on, off, and split
+# An enumeration of PCIe link width
 #
-# @on: Enabled
+# @1: x1
 #
-# @off: Disabled
+# @2: x2
 #
-# @split: Mixed
+# @4: x4
 #
-# Since: 2.6
+# @8: x8
+#
+# @12: x12
+#
+# @16: x16
+#
+# @32: x32
+#
+# Since: 4.0
 ##
-{ 'enum': 'OnOffSplit',
-  'data': [ 'on', 'off', 'split' ] }
+{ 'enum': 'PCIELinkWidth',
+  'data': [ '1', '2', '4', '8', '12', '16', '32' ] }
+
+##
+# @SysEmuTarget:
+#
+# The comprehensive enumeration of QEMU system emulation ("softmmu")
+# targets. Run "./configure --help" in the project root directory, and
+# look for the *-softmmu targets near the "--target-list" option. The
+# individual target constants are not documented here, for the time
+# being.
+#
+# Notes: The resulting QMP strings can be appended to the "qemu-system-"
+#        prefix to produce the corresponding QEMU executable name. This
+#        is true even for "qemu-system-x86_64".
+#
+# ppcemb: dropped in 3.1
+#
+# Since: 3.0
+##
+{ 'enum' : 'SysEmuTarget',
+  'data' : [ 'aarch64', 'alpha', 'arm', 'cris', 'hppa', 'i386', 'lm32',
+             'm68k', 'microblaze', 'microblazeel', 'mips', 'mips64',
+             'mips64el', 'mipsel', 'moxie', 'nios2', 'or1k', 'ppc',
+             'ppc64', 'riscv32', 'riscv64', 's390x', 'sh4',
+             'sh4eb', 'sparc', 'sparc64', 'tricore', 'unicore32',
+             'x86_64', 'xtensa', 'xtensaeb' ] }