Files
android_kernel_samsung_sm87…/bindings/pinctrl/qcom,tlmm-vm-mem-access.yaml
Cong Zhang d2d9ed22b6 dt-bindings: soc: qcom: Add child node of TLMM VM mem access
Add child node for vm instance to specify VMID, label and gpio list for
each VM.

Change-Id: I4834623b176e997553aab462c60b3d6913840d9b
Signed-off-by: Cong Zhang <quic_congzhan@quicinc.com>
2024-03-19 17:16:50 +08:00

55 lines
1.3 KiB
YAML

# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
%YAML 1.2
---
$id: http://devicetree.org/schemas/pinctrl/qcom,tlmm-vm-mem-access.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#
title: Qualcomm Technologies, Inc. TLMM VM memory access driver
maintainers:
- Murali Nalajala <quic_mnalajal@quicinc.com>
- Cong Zhang <quic_congzhan@quicinc.com>
description: |+
The driver facilitates initial memory access to TLMM VM driver.
properties:
compatible:
const: qcom,tlmm-vm-mem-access
qcom,master:
description: Specify if this device is on the primary virtual machine.
type: boolean
patternProperties:
"^.*$":
type: object
description: child node representing a VM instance
properties:
tlmm-vm-gpio-list:
description: List of shared gpios.
qcom,vmid:
description: VMID for the VM instance
$ref: /schemas/types.yaml#/definitions/uint32
qcom,label:
description: Unique label for the VM instance
$ref: /schemas/types.yaml#/definitions/uint32
additionalProperties: false
examples:
- |
tlmm-vm-mem-access {
compatible = "qcom,tlmm-vm-mem-access";
qcom,master;
tuivm {
qcom,label = <0x01>;
qcom,vmid = <45>;
tlmm-vm-gpio-list = <&tlmm 1 0 &tlmm 2 0>;
};
};
...