This device can communicate with more than one msgq. Describe the names or these msgqs. Change-Id: Ibc0a4de16c6158ac756459fc2ee8862bd9e23215 Signed-off-by: Patrick Daly <quic_pdaly@quicinc.com>
37 lines
836 B
YAML
37 lines
836 B
YAML
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
|
|
%YAML 1.2
|
|
---
|
|
$id: "http://devicetree.org/schemas/soc/qcom/qcom,mem-buf-msgq.yaml#"
|
|
$schema: "http://devicetree.org/meta-schemas/core.yaml#"
|
|
|
|
title: Qualcomm Technologies, Inc. Memory Buffer Sharing Msgq driver
|
|
|
|
maintainers:
|
|
- Chris Goldsworthy
|
|
|
|
description: |
|
|
Provides inter-VM message transfer services to the qcom,mem-buf driver
|
|
|
|
properties:
|
|
compatible:
|
|
items:
|
|
- const: qcom,mem-buf-msgq
|
|
|
|
qcom,msgq-names:
|
|
$ref: /schemas/types.yaml#/definitions/string-array
|
|
description:
|
|
A list of msgqs this device is able to communicate over.
|
|
|
|
additionalProperties: false
|
|
|
|
required:
|
|
- compatible
|
|
- qcom,msgq-names
|
|
|
|
examples:
|
|
- |
|
|
qcom,mem-buf-msgq {
|
|
compatible = "qcom,mem-buf-msgq";
|
|
qcom,msgq-names = "trusted_vm", "oem_vm";
|
|
};
|