]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - Documentation/devicetree/bindings/clock/qcom,rpmcc.txt
Revert "clk: qcom: Add support for RPM Clocks"
[karo-tx-linux.git] / Documentation / devicetree / bindings / clock / qcom,rpmcc.txt
1 Qualcomm RPM Clock Controller Binding
2 ------------------------------------------------
3 The RPM is a dedicated hardware engine for managing the shared
4 SoC resources in order to keep the lowest power profile. It
5 communicates with other hardware subsystems via shared memory
6 and accepts clock requests, aggregates the requests and turns
7 the clocks on/off or scales them on demand.
8
9 Required properties :
10 - compatible : shall contain only one of the following. The generic
11                compatible "qcom,rpmcc" should be also included.
12
13                         "qcom,rpmcc-msm8916", "qcom,rpmcc"
14
15 - #clock-cells : shall contain 1
16
17 Example:
18         smd {
19                 compatible = "qcom,smd";
20
21                 rpm {
22                         interrupts = <0 168 1>;
23                         qcom,ipc = <&apcs 8 0>;
24                         qcom,smd-edge = <15>;
25
26                         rpm_requests {
27                                 compatible = "qcom,rpm-msm8916";
28                                 qcom,smd-channels = "rpm_requests";
29
30                                 rpmcc: qcom,rpmcc {
31                                         compatible = "qcom,rpmcc-msm8916", "qcom,rpmcc";
32                                         #clock-cells = <1>;
33                                 };
34                         };
35                 };
36         };