forked from Minki/linux
685dc94b7d
This adds all RPM based clocks for msm8974, except cxo and gfx3d_clk_src. Tested-by: Georgi Djakov <georgi.djakov@linaro.org> Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org> Acked-by: Rob Herring <robh@kernel.org> Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
39 lines
1.0 KiB
Plaintext
39 lines
1.0 KiB
Plaintext
Qualcomm RPM Clock Controller Binding
|
|
------------------------------------------------
|
|
The RPM is a dedicated hardware engine for managing the shared
|
|
SoC resources in order to keep the lowest power profile. It
|
|
communicates with other hardware subsystems via shared memory
|
|
and accepts clock requests, aggregates the requests and turns
|
|
the clocks on/off or scales them on demand.
|
|
|
|
Required properties :
|
|
- compatible : shall contain only one of the following. The generic
|
|
compatible "qcom,rpmcc" should be also included.
|
|
|
|
"qcom,rpmcc-msm8916", "qcom,rpmcc"
|
|
"qcom,rpmcc-msm8974", "qcom,rpmcc"
|
|
"qcom,rpmcc-apq8064", "qcom,rpmcc"
|
|
|
|
- #clock-cells : shall contain 1
|
|
|
|
Example:
|
|
smd {
|
|
compatible = "qcom,smd";
|
|
|
|
rpm {
|
|
interrupts = <0 168 1>;
|
|
qcom,ipc = <&apcs 8 0>;
|
|
qcom,smd-edge = <15>;
|
|
|
|
rpm_requests {
|
|
compatible = "qcom,rpm-msm8916";
|
|
qcom,smd-channels = "rpm_requests";
|
|
|
|
rpmcc: clock-controller {
|
|
compatible = "qcom,rpmcc-msm8916", "qcom,rpmcc";
|
|
#clock-cells = <1>;
|
|
};
|
|
};
|
|
};
|
|
};
|