From: Yi-De Wu <yi-de.wu@mediatek.com>
To: Yingshiuan Pan <yingshiuan.pan@mediatek.com>,
Ze-Yu Wang <ze-yu.wang@mediatek.com>,
Yi-De Wu <yi-de.wu@mediatek.com>,
Rob Herring <robh+dt@kernel.org>,
Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>,
Conor Dooley <conor+dt@kernel.org>,
Jonathan Corbet <corbet@lwn.net>,
Catalin Marinas <catalin.marinas@arm.com>,
Will Deacon <will@kernel.org>,
Matthias Brugger <matthias.bgg@gmail.com>,
AngeloGioacchino Del Regno
<angelogioacchino.delregno@collabora.com>
Cc: Arnd Bergmann <arnd@arndb.de>, <devicetree@vger.kernel.org>,
<linux-kernel@vger.kernel.org>, <linux-doc@vger.kernel.org>,
<linux-arm-kernel@lists.infradead.org>,
<linux-mediatek@lists.infradead.org>,
David Bradil <dbrazdil@google.com>,
Trilok Soni <quic_tsoni@quicinc.com>,
Jade Shih <jades.shih@mediatek.com>,
Ivan Tseng <ivan.tseng@mediatek.com>,
"My Chuang" <my.chuang@mediatek.com>,
Kevenny Hsieh <kevenny.hsieh@mediatek.com>,
Willix Yeh <chi-shen.yeh@mediatek.com>,
Liju Chen <liju-clr.chen@mediatek.com>
Subject: [PATCH v6 02/15] dt-bindings: hypervisor: Add MediaTek GenieZone hypervisor
Date: Tue, 19 Sep 2023 19:11:57 +0800 [thread overview]
Message-ID: <20230919111210.19615-3-yi-de.wu@mediatek.com> (raw)
In-Reply-To: <20230919111210.19615-1-yi-de.wu@mediatek.com>
From: "Yingshiuan Pan" <yingshiuan.pan@mediatek.com>
Add documentation for GenieZone(gzvm) node. This node informs gzvm
driver to start probing if geniezone hypervisor is available and
able to do virtual machine operations.
[Detail]
The debate of using dt or not remains intact, and gentle ping seems not
working on this issue. We'll keep this patch for further discussion and move
forward in order to rebase based on the latest rc release. For previous
discussion, please kindly refer to the following link.
https://lore.kernel.org/all/4b81b7fbd50c04958c27fbb6e620a15ae4fe0d54.camel@mediatek.com/
Signed-off-by: Yingshiuan Pan <yingshiuan.pan@mediatek.com>
Signed-off-by: Liju Chen <liju-clr.chen@mediatek.com>
Signed-off-by: Yi-De Wu <yi-de.wu@mediatek.com>
---
.../hypervisor/mediatek,geniezone-hyp.yaml | 31 +++++++++++++++++++
MAINTAINERS | 1 +
2 files changed, 32 insertions(+)
create mode 100644 Documentation/devicetree/bindings/hypervisor/mediatek,geniezone-hyp.yaml
diff --git a/Documentation/devicetree/bindings/hypervisor/mediatek,geniezone-hyp.yaml b/Documentation/devicetree/bindings/hypervisor/mediatek,geniezone-hyp.yaml
new file mode 100644
index 000000000000..ab89a4c310cb
--- /dev/null
+++ b/Documentation/devicetree/bindings/hypervisor/mediatek,geniezone-hyp.yaml
@@ -0,0 +1,31 @@
+# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/hypervisor/mediatek,geniezone-hyp.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: MediaTek GenieZone hypervisor
+
+maintainers:
+ - Yingshiuan Pan <yingshiuan.pan@mediatek.com>
+
+description:
+ This interface is designed for integrating GenieZone hypervisor into Android
+ Virtualization Framework(AVF) along with Crosvm as a VMM.
+ It acts like a wrapper for every hypercall to GenieZone hypervisor in
+ order to control guest VM lifecycles and virtual interrupt injections.
+
+properties:
+ compatible:
+ const: mediatek,geniezone-hyp
+
+required:
+ - compatible
+
+additionalProperties: false
+
+examples:
+ - |
+ hypervisor {
+ compatible = "mediatek,geniezone-hyp";
+ };
diff --git a/MAINTAINERS b/MAINTAINERS
index a788e7da77c7..c4f7ed6228f2 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -8801,6 +8801,7 @@ GENIEZONE HYPERVISOR DRIVER
M: Yingshiuan Pan <yingshiuan.pan@mediatek.com>
M: Ze-Yu Wang <ze-yu.wang@mediatek.com>
M: Yi-De Wu <yi-de.wu@mediatek.com>
+F: Documentation/devicetree/bindings/hypervisor/mediatek,geniezone-hyp.yaml
F: Documentation/virt/geniezone/
GENWQE (IBM Generic Workqueue Card)
--
2.18.0
next prev parent reply other threads:[~2023-09-19 11:12 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-09-19 11:11 [PATCH v6 00/15] GenieZone hypervisor drivers Yi-De Wu
2023-09-19 11:11 ` [PATCH v6 01/15] docs: geniezone: Introduce GenieZone hypervisor Yi-De Wu
2023-09-19 11:11 ` Yi-De Wu [this message]
2023-09-19 11:11 ` [PATCH v6 03/15] virt: geniezone: Add GenieZone hypervisor driver Yi-De Wu
2023-09-19 11:11 ` [PATCH v6 04/15] virt: geniezone: Add vm support Yi-De Wu
2023-09-19 11:12 ` [PATCH v6 05/15] virt: geniezone: Add set_user_memory_region for vm Yi-De Wu
2023-09-19 11:12 ` [PATCH v6 06/15] virt: geniezone: Add vm capability check Yi-De Wu
2023-09-19 11:12 ` [PATCH v6 07/15] virt: geniezone: Add vcpu support Yi-De Wu
2023-09-19 11:12 ` [PATCH v6 08/15] virt: geniezone: Add irqchip support for virtual interrupt injection Yi-De Wu
2023-09-19 11:12 ` [PATCH v6 09/15] virt: geniezone: Add irqfd support Yi-De Wu
2023-09-19 11:12 ` [PATCH v6 10/15] virt: geniezone: Add ioeventfd support Yi-De Wu
2023-09-19 11:12 ` [PATCH v6 11/15] virt: geniezone: Add memory region support Yi-De Wu
2023-09-19 11:12 ` [PATCH v6 12/15] virt: geniezone: Add dtb config support Yi-De Wu
2023-09-19 11:12 ` [PATCH v6 13/15] virt: geniezone: Add demand paging support Yi-De Wu
2023-09-19 11:12 ` [PATCH v6 14/15] virt: geniezone: Add memory pin/unpin support Yi-De Wu
2023-09-19 11:12 ` [PATCH v6 15/15] virt: geniezone: Add block-based demand paging support Yi-De Wu
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20230919111210.19615-3-yi-de.wu@mediatek.com \
--to=yi-de.wu@mediatek.com \
--cc=angelogioacchino.delregno@collabora.com \
--cc=arnd@arndb.de \
--cc=catalin.marinas@arm.com \
--cc=chi-shen.yeh@mediatek.com \
--cc=conor+dt@kernel.org \
--cc=corbet@lwn.net \
--cc=dbrazdil@google.com \
--cc=devicetree@vger.kernel.org \
--cc=ivan.tseng@mediatek.com \
--cc=jades.shih@mediatek.com \
--cc=kevenny.hsieh@mediatek.com \
--cc=krzysztof.kozlowski+dt@linaro.org \
--cc=liju-clr.chen@mediatek.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-doc@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mediatek@lists.infradead.org \
--cc=matthias.bgg@gmail.com \
--cc=my.chuang@mediatek.com \
--cc=quic_tsoni@quicinc.com \
--cc=robh+dt@kernel.org \
--cc=will@kernel.org \
--cc=yingshiuan.pan@mediatek.com \
--cc=ze-yu.wang@mediatek.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).