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

Commit 9f6abfe6 authored by Tushar Nimkar's avatar Tushar Nimkar
Browse files

bindings: arm: msm: Added documentation for ipc spinlock

This adds bindings for ipc-spinlock.

Change-Id: I2543ac6d8a61d9bc06c12f4c76284aaa1500e2b0
parent 9c0352d0
Loading
Loading
Loading
Loading
+27 −0
Original line number Diff line number Diff line
Interprocessor Communication Spinlock

--Dedicated Hardware Implementation--
Required properties:
- compatible : should be "qcom,ipc-spinlock-sfpb"
- reg : the location and size of the spinlock hardware
- qcom,num-locks : the number of locks supported

Example:

	qcom,ipc-spinlock@fd484000 {
		compatible = "qcom,ipc-spinlock-sfpb";
		reg = <0xfd484000 0x1000>;
		qcom,num-locks = <32>;
	};

--LDREX Implementation--
Required properties:
- compatible : should be "qcom,ipc-spinlock-ldrex"
- reg : the location and size of the shared lock memory

Example:

	qcom,ipc-spinlock@fa00000 {
		compatible = "qcom,ipc-spinlock-ldrex";
		reg = <0xfa00000 0x200000>;
	};