Add snapshot of device-tree bindings for AON spi, interface and it's corresponding rpmsg drivers from msm-5.15.c2 in YAML format. Snapshot is taken from msm-5.15.c2 kernel commit 95ffcf910eee ("ARM: dts: msm: add aon-rma glink node"). Change-Id: I5c66e660b674fee78f541b267027a34f92717e0c Signed-off-by: Koushik Immadisetty <quic_kimmadis@quicinc.com>
47 lines
1.1 KiB
YAML
47 lines
1.1 KiB
YAML
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
|
|
%YAML 1.2
|
|
---
|
|
$id: http://devicetree.org/schemas/soc/qcom/qcom,slatecom_rpmsg.yaml#
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
title: Slatecom RPMSG Driver
|
|
|
|
maintainers:
|
|
- Praveen koya <quic_pkoya@quicinc.com>
|
|
|
|
description: |
|
|
slatecom_rpmsg driver provides functionality
|
|
to send and receive data over Glink from slate co processor.
|
|
|
|
properties:
|
|
compatible:
|
|
const: qcom,slatecom-rpmsg
|
|
|
|
qcom,glink-channels:
|
|
$ref: '/schemas/types.yaml#/definitions/string'
|
|
description: specifies the glink channel name
|
|
|
|
qcom,glinkpkt-edge:
|
|
$ref: '/schemas/types.yaml#/definitions/string'
|
|
description: specifies the glink edge to match
|
|
|
|
intents:
|
|
description: specifies the size and count of intents to glink
|
|
|
|
required:
|
|
- compatible
|
|
- qcom,glink-channels
|
|
- qcom,glinkpkt-edge
|
|
|
|
additionalProperties: false
|
|
|
|
examples:
|
|
- |
|
|
qcom,slatecom-rpmsg {
|
|
compatible = "qcom,slatecom-rpmsg";
|
|
qcom,glink-channels = "slate_ctrl";
|
|
qcom,glinkpkt-edge = "slate";
|
|
intents = <0x200 1>;
|
|
};
|
|
|