63 lines
1.8 KiB
Diff
63 lines
1.8 KiB
Diff
|
From b5a226f307b01bb1b58a88c95d29da34c246757f Mon Sep 17 00:00:00 2001
|
||
|
Message-Id: <b5a226f307b01bb1b58a88c95d29da34c246757f@dist-git>
|
||
|
From: Michal Privoznik <mprivozn@redhat.com>
|
||
|
Date: Tue, 12 Jul 2022 16:10:08 +0200
|
||
|
Subject: [PATCH] docs: Document TPM portion of domcaps
|
||
|
|
||
|
Surprisingly, we don't document TPM part of domain capabilities.
|
||
|
Fortunately, the information exposed is pretty much self
|
||
|
explanatory, but we should document it regardless.
|
||
|
|
||
|
Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
|
||
|
Reviewed-by: Peter Krempa <pkrempa@redhat.com>
|
||
|
(cherry picked from commit 6a00c565c4d0f0ec970e043ea2686bd30396ed79)
|
||
|
Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=2103119
|
||
|
Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
|
||
|
---
|
||
|
docs/formatdomaincaps.rst | 29 +++++++++++++++++++++++++++++
|
||
|
1 file changed, 29 insertions(+)
|
||
|
|
||
|
diff --git a/docs/formatdomaincaps.rst b/docs/formatdomaincaps.rst
|
||
|
index 933469b2a2..3c425a9a4a 100644
|
||
|
--- a/docs/formatdomaincaps.rst
|
||
|
+++ b/docs/formatdomaincaps.rst
|
||
|
@@ -494,6 +494,35 @@ instance:
|
||
|
``driverType``
|
||
|
Options for the ``type`` attribute of the <filesystem><driver> element.
|
||
|
|
||
|
+TPM device
|
||
|
+^^^^^^^^^^
|
||
|
+
|
||
|
+TPM device capabilities are exposed under the ``tpm`` element. For instance:
|
||
|
+
|
||
|
+::
|
||
|
+
|
||
|
+ <domainCapabilities>
|
||
|
+ ...
|
||
|
+ <devices>
|
||
|
+ <tpm supported='yes'>
|
||
|
+ <enum name='model'>
|
||
|
+ <value>tpm-tis</value>
|
||
|
+ <value>tpm-crb</value>
|
||
|
+ </enum>
|
||
|
+ <enum name='backendModel'>
|
||
|
+ <value>passthrough</value>
|
||
|
+ <value>emulator</value>
|
||
|
+ </enum>
|
||
|
+ </tpm>
|
||
|
+ ...
|
||
|
+ </devices>
|
||
|
+ </domainCapabilities>
|
||
|
+
|
||
|
+``model``
|
||
|
+ Options for the ``model`` attribute of the ``<tpm/>`` element.
|
||
|
+``backendModel``
|
||
|
+ Options for the ``type`` attribute of the ``<tpm><backend/>`` element.
|
||
|
+
|
||
|
Features
|
||
|
~~~~~~~~
|
||
|
|
||
|
--
|
||
|
2.35.1
|
||
|
|