1QCOM Secure Channel Manager (SCM) 2 3Qualcomm processors include an interface to communicate to the secure firmware. 4This interface allows for clients to request different types of actions. These 5can include CPU power up/down, HDCP requests, loading of firmware, and other 6assorted actions. 7 8Required 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-mdm9607" 16 * "qcom,scm-msm8226" 17 * "qcom,scm-msm8660" 18 * "qcom,scm-msm8916" 19 * "qcom,scm-msm8953" 20 * "qcom,scm-msm8960" 21 * "qcom,scm-msm8974" 22 * "qcom,scm-msm8994" 23 * "qcom,scm-msm8996" 24 * "qcom,scm-msm8998" 25 * "qcom,scm-sc7180" 26 * "qcom,scm-sc7280" 27 * "qcom,scm-sdm845" 28 * "qcom,scm-sdx55" 29 * "qcom,scm-sm6350" 30 * "qcom,scm-sm8150" 31 * "qcom,scm-sm8250" 32 * "qcom,scm-sm8350" 33 * "qcom,scm-sm8450" 34 and: 35 * "qcom,scm" 36- clocks: Specifies clocks needed by the SCM interface, if any: 37 * core clock required for "qcom,scm-apq8064", "qcom,scm-msm8660" and 38 "qcom,scm-msm8960" 39 * core, iface and bus clocks required for "qcom,scm-apq8084", 40 "qcom,scm-msm8916", "qcom,scm-msm8953" and "qcom,scm-msm8974" 41- clock-names: Must contain "core" for the core clock, "iface" for the interface 42 clock and "bus" for the bus clock per the requirements of the compatible. 43- qcom,dload-mode: phandle to the TCSR hardware block and offset of the 44 download mode control register (optional) 45 46Example for MSM8916: 47 48 firmware { 49 scm { 50 compatible = "qcom,msm8916", "qcom,scm"; 51 clocks = <&gcc GCC_CRYPTO_CLK> , 52 <&gcc GCC_CRYPTO_AXI_CLK>, 53 <&gcc GCC_CRYPTO_AHB_CLK>; 54 clock-names = "core", "bus", "iface"; 55 }; 56 }; 57