net: Fix a misleading error message
[qemu/armbru.git] / qapi / tpm.json
bloba754455ca5581c1bdd9cb84d204d7664179e1a6b
1 # -*- Mode: Python -*-
2 # vim: filetype=python
5 ##
6 # = TPM (trusted platform module) devices
7 ##
9 ##
10 # @TpmModel:
12 # An enumeration of TPM models
14 # @tpm-tis: TPM TIS model
16 # @tpm-crb: TPM CRB model (since 2.12)
18 # @tpm-spapr: TPM SPAPR model (since 5.0)
20 # Since: 1.5
22 { 'enum': 'TpmModel', 'data': [ 'tpm-tis', 'tpm-crb', 'tpm-spapr' ],
23   'if': 'CONFIG_TPM' }
26 # @query-tpm-models:
28 # Return a list of supported TPM models
30 # Returns: a list of TpmModel
32 # Since: 1.5
34 # Example:
36 # -> { "execute": "query-tpm-models" }
37 # <- { "return": [ "tpm-tis", "tpm-crb", "tpm-spapr" ] }
39 { 'command': 'query-tpm-models', 'returns': ['TpmModel'],
40   'if': 'CONFIG_TPM' }
43 # @TpmType:
45 # An enumeration of TPM types
47 # @passthrough: TPM passthrough type
49 # @emulator: Software Emulator TPM type (since 2.11)
51 # Since: 1.5
53 { 'enum': 'TpmType', 'data': [ 'passthrough', 'emulator' ],
54   'if': 'CONFIG_TPM' }
57 # @query-tpm-types:
59 # Return a list of supported TPM types
61 # Returns: a list of TpmType
63 # Since: 1.5
65 # Example:
67 # -> { "execute": "query-tpm-types" }
68 # <- { "return": [ "passthrough", "emulator" ] }
70 { 'command': 'query-tpm-types', 'returns': ['TpmType'],
71   'if': 'CONFIG_TPM' }
74 # @TPMPassthroughOptions:
76 # Information about the TPM passthrough type
78 # @path: string describing the path used for accessing the TPM device
80 # @cancel-path: string showing the TPM's sysfs cancel file for
81 #     cancellation of TPM commands while they are executing
83 # Since: 1.5
85 { 'struct': 'TPMPassthroughOptions',
86   'data': { '*path': 'str',
87             '*cancel-path': 'str' },
88   'if': 'CONFIG_TPM' }
91 # @TPMEmulatorOptions:
93 # Information about the TPM emulator type
95 # @chardev: Name of a unix socket chardev
97 # Since: 2.11
99 { 'struct': 'TPMEmulatorOptions', 'data': { 'chardev' : 'str' },
100   'if': 'CONFIG_TPM' }
103 # @TPMPassthroughOptionsWrapper:
105 # Since: 1.5
107 { 'struct': 'TPMPassthroughOptionsWrapper',
108   'data': { 'data': 'TPMPassthroughOptions' },
109   'if': 'CONFIG_TPM' }
112 # @TPMEmulatorOptionsWrapper:
114 # Since: 2.11
116 { 'struct': 'TPMEmulatorOptionsWrapper',
117   'data': { 'data': 'TPMEmulatorOptions' },
118   'if': 'CONFIG_TPM' }
121 # @TpmTypeOptions:
123 # A union referencing different TPM backend types' configuration
124 # options
126 # @type:
127 #     - 'passthrough' The configuration options for the TPM
128 #       passthrough type
129 #     - 'emulator' The configuration options for TPM emulator backend
130 #       type
132 # Since: 1.5
134 { 'union': 'TpmTypeOptions',
135   'base': { 'type': 'TpmType' },
136   'discriminator': 'type',
137   'data': { 'passthrough' : 'TPMPassthroughOptionsWrapper',
138             'emulator': 'TPMEmulatorOptionsWrapper' },
139   'if': 'CONFIG_TPM' }
142 # @TPMInfo:
144 # Information about the TPM
146 # @id: The Id of the TPM
148 # @model: The TPM frontend model
150 # @options: The TPM (backend) type configuration options
152 # Since: 1.5
154 { 'struct': 'TPMInfo',
155   'data': {'id': 'str',
156            'model': 'TpmModel',
157            'options': 'TpmTypeOptions' },
158   'if': 'CONFIG_TPM' }
161 # @query-tpm:
163 # Return information about the TPM device
165 # Returns: @TPMInfo on success
167 # Since: 1.5
169 # Example:
171 # -> { "execute": "query-tpm" }
172 # <- { "return":
173 #      [
174 #        { "model": "tpm-tis",
175 #          "options":
176 #            { "type": "passthrough",
177 #              "data":
178 #                { "cancel-path": "/sys/class/misc/tpm0/device/cancel",
179 #                  "path": "/dev/tpm0"
180 #                }
181 #            },
182 #          "id": "tpm0"
183 #        }
184 #      ]
185 #    }
187 { 'command': 'query-tpm', 'returns': ['TPMInfo'],
188   'if': 'CONFIG_TPM' }