From da4b2e9e0b916c77da76a917879c3ad9050a7317 Mon Sep 17 00:00:00 2001 From: Hrishabh Rajput Date: Mon, 5 Apr 2021 18:42:29 +0530 Subject: [PATCH] dt-bindings: Add TLMM VM test driver documentation The driver provides the framework to test memory lend to VM. Change-Id: I90c2b17181ce9e50c037fa4997f8f9a5f6b9154b Signed-off-by: Hrishabh Rajput --- bindings/soc/qcom/qcom,tlmm-vm-test.yaml | 30 ++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 bindings/soc/qcom/qcom,tlmm-vm-test.yaml diff --git a/bindings/soc/qcom/qcom,tlmm-vm-test.yaml b/bindings/soc/qcom/qcom,tlmm-vm-test.yaml new file mode 100644 index 00000000..d199a837 --- /dev/null +++ b/bindings/soc/qcom/qcom,tlmm-vm-test.yaml @@ -0,0 +1,30 @@ +# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) +%YAML 1.2 +--- +$id: http://devicetree.org/schemas/soc/qcom/qcom,tlmm-vm-test.yaml# +$schema: http://devicetree.org/meta-schemas/core.yaml# + +title: Qualcomm Technologies, Inc. TLMM VM test driver binding + +maintainers: + +description: |+ + The driver can be used to test memory lending to VM. + +properties: + compatible: + const: qcom,tlmm-vm-test + + reg: + items: + - description: Base address of register space to be lent + - description: Size of the register space + +example: + - | + tlmm-vm-mem-test { + compatible = "qcom,tlmm-vm-test"; + tlmm-vm-io-bases = <0x0 0x0>; + tlmm-vm-io-sizes = <0x0 0x0>; + }; +...