Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6a51539e authored by qctecmdr's avatar qctecmdr Committed by Gerrit - the friendly Code Review server
Browse files

Merge "bindings: Add device-tree bindings for slate_events_bridge driver"

parents d48ad460 06e39ff0
Loading
Loading
Loading
Loading
+14 −0
Original line number Diff line number Diff line
* Slate Events Bridge Driver

slate_events_bridge driver provides a set of apis for clients
to receive events from slate co processor. The events are
received over Glink.

Required properties:
- compatible:	      Must be "qcom,slate-events-bridge"

Example:
	qcom,slate-events-bridge {
		compatible = "qcom,slate-events-bridge";
		};
+20 −0
Original line number Diff line number Diff line
* Slate Events Bridge RPMSG Driver

slate_events_bridge_rpmsg driver provides functionality
to send and receive data over Glink from slate co processor.

Required properties:
- compatible:	      Must be "qcom,slate-events-bridge-rpmsg"
- qcom,glink-channels	specifies the glink channel name
- qcom,glinkpkt-edge	specifies the glink edge to match

Optional properties:
- intents		specifies the size and count of intents to glink

Example:
	qcom,slate-events-bridge-rpmsg {
		compatible = "qcom,slate-events-bridge-rpmsg";
		qcom,glink-channels = "slate_events";
		qcom,glinkpkt-edge = "slate";
		intents = <0x200 5>;
	};