1Qualcomm RPM Clock Controller Binding 2------------------------------------------------ 3The RPM is a dedicated hardware engine for managing the shared 4SoC resources in order to keep the lowest power profile. It 5communicates with other hardware subsystems via shared memory 6and accepts clock requests, aggregates the requests and turns 7the clocks on/off or scales them on demand. 8 9Required properties : 10- compatible : shall contain only one of the following. The generic 11 compatible "qcom,rpmcc" should be also included. 12 13 "qcom,rpmcc-msm8660", "qcom,rpmcc" 14 "qcom,rpmcc-apq8060", "qcom,rpmcc" 15 "qcom,rpmcc-msm8916", "qcom,rpmcc" 16 "qcom,rpmcc-msm8974", "qcom,rpmcc" 17 "qcom,rpmcc-apq8064", "qcom,rpmcc" 18 "qcom,rpmcc-msm8996", "qcom,rpmcc" 19 20- #clock-cells : shall contain 1 21 22The clock enumerators are defined in <dt-bindings/clock/qcom,rpmcc.h> 23and come in pairs: FOO_CLK followed by FOO_A_CLK. The latter clock 24is an "active" clock, which means that the consumer only care that the 25clock is available when the apps CPU subsystem is active, i.e. not 26suspended or in deep idle. If it is important that the clock keeps running 27during system suspend, you need to specify the non-active clock, the one 28not containing *_A_* in the enumerator name. 29 30Example: 31 smd { 32 compatible = "qcom,smd"; 33 34 rpm { 35 interrupts = <0 168 1>; 36 qcom,ipc = <&apcs 8 0>; 37 qcom,smd-edge = <15>; 38 39 rpm_requests { 40 compatible = "qcom,rpm-msm8916"; 41 qcom,smd-channels = "rpm_requests"; 42 43 rpmcc: clock-controller { 44 compatible = "qcom,rpmcc-msm8916", "qcom,rpmcc"; 45 #clock-cells = <1>; 46 }; 47 }; 48 }; 49 }; 50