Merge tag 'soc-fsl-next-v5.13' of git://git.kernel.org/pub/scm/linux/kernel/git/leo...
[linux-2.6-microblaze.git] / Documentation / devicetree / bindings / firmware / qcom,scm.txt
1 QCOM Secure Channel Manager (SCM)
2
3 Qualcomm processors include an interface to communicate to the secure firmware.
4 This interface allows for clients to request different types of actions.  These
5 can include CPU power up/down, HDCP requests, loading of firmware, and other
6 assorted actions.
7
8 Required properties:
9 - compatible: must contain one of the following:
10  * "qcom,scm-apq8064"
11  * "qcom,scm-apq8084"
12  * "qcom,scm-ipq4019"
13  * "qcom,scm-ipq806x"
14  * "qcom,scm-ipq8074"
15  * "qcom,scm-msm8660"
16  * "qcom,scm-msm8916"
17  * "qcom,scm-msm8960"
18  * "qcom,scm-msm8974"
19  * "qcom,scm-msm8994"
20  * "qcom,scm-msm8996"
21  * "qcom,scm-msm8998"
22  * "qcom,scm-sc7180"
23  * "qcom,scm-sc7280"
24  * "qcom,scm-sdm845"
25  * "qcom,scm-sm8150"
26  * "qcom,scm-sm8250"
27  * "qcom,scm-sm8350"
28  and:
29  * "qcom,scm"
30 - clocks: Specifies clocks needed by the SCM interface, if any:
31  * core clock required for "qcom,scm-apq8064", "qcom,scm-msm8660" and
32    "qcom,scm-msm8960"
33  * core, iface and bus clocks required for "qcom,scm-apq8084",
34    "qcom,scm-msm8916" and "qcom,scm-msm8974"
35 - clock-names: Must contain "core" for the core clock, "iface" for the interface
36   clock and "bus" for the bus clock per the requirements of the compatible.
37 - qcom,dload-mode: phandle to the TCSR hardware block and offset of the
38                    download mode control register (optional)
39
40 Example for MSM8916:
41
42         firmware {
43                 scm {
44                         compatible = "qcom,msm8916", "qcom,scm";
45                         clocks = <&gcc GCC_CRYPTO_CLK> ,
46                                  <&gcc GCC_CRYPTO_AXI_CLK>,
47                                  <&gcc GCC_CRYPTO_AHB_CLK>;
48                         clock-names = "core", "bus", "iface";
49                 };
50         };