rpmsg fixes for v5.20
This fixes schema validation warnings in the Devicetree bindings for SMD and SMD RPM. -----BEGIN PGP SIGNATURE----- iQJPBAABCAA5FiEEBd4DzF816k8JZtUlCx85Pw2ZrcUFAmLz1CwbHGJqb3JuLmFu ZGVyc3NvbkBsaW5hcm8ub3JnAAoJEAsfOT8Nma3F4ngP/iRYmwpwlVsmu759DJNc x4XOAxZiqNICsDESPU/ys/VGtkEerIasewRfqqfpHVLQ6hh5aVqjBwu2AqYx1yuo JNmBsq5F1PvmpvKBEkICV0wrFco1JL2XZTgjMNkngvAwwps9EM207dHBN7q/PhT0 nGzxtMajnvnA0P3gpg6hWSCM98N3alOiasACaDztZLB0cBy1bE8giHajVIo28ngp kJRizuLbNdU1W2kl//XisxTBXFewjT/2n5kvCqnR05FUdxMFAKlttUN2GcqI+qXR 2rFrQ/SKNMzvdF6ZuHUrI/3Y5EwuQa628c8+lQEdDleMPqDVNqFULgqPnrkWKai0 /1lDEGJ6F6U/YdMA2ng5wKoJ9KHhmliHBHh3KLx1u+ITosHuwh83C/l47HSulOR5 pxV1U+sRTrsfIqK2PzkMM5R3ygiF2kpB37I+AKvNA/Ho+vDSw6e2AizzclBqorl4 bSA4hdUkpr8IXZPAiuL83HaBSNrwicspVGSm+PMB+gIcDIKdS6JGkKGsdIoJNskI hJDLqan7sbDWmmf2rpvgFch+YzQ/Pvl3hvBI+1b5M0Re9j38fJTaizImT655SRlX 0i75t0ZorSsVPFQ9kDy/eQZPSEHd+WEIi8EbBCvWlF0LuuPeTgEb0t+aF+JBI2dJ tMf2E23XudXtr02uZuCQEknS =JIIX -----END PGP SIGNATURE----- Merge tag 'rpmsg-v5.20-1' of git://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux Pull rpmsg fixes from Bjorn Andersson: "This fixes schema validation warnings in the Devicetree bindings for SMD and SMD RPM" * tag 'rpmsg-v5.20-1' of git://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux: dt-bindings: soc: qcom: smd-rpm: extend example dt-bindings: soc: qcom: smd: reference SMD edge schema
This commit is contained in:
commit
b196f3d101
|
@ -92,12 +92,33 @@ examples:
|
||||||
qcom,ipc = <&apcs 8 0>;
|
qcom,ipc = <&apcs 8 0>;
|
||||||
qcom,smd-edge = <15>;
|
qcom,smd-edge = <15>;
|
||||||
|
|
||||||
rpm-requests {
|
rpm-requests {
|
||||||
compatible = "qcom,rpm-msm8974";
|
compatible = "qcom,rpm-msm8916";
|
||||||
qcom,smd-channels = "rpm_requests";
|
qcom,smd-channels = "rpm_requests";
|
||||||
|
|
||||||
/* Regulator nodes to follow */
|
clock-controller {
|
||||||
|
compatible = "qcom,rpmcc-msm8916", "qcom,rpmcc";
|
||||||
|
#clock-cells = <1>;
|
||||||
|
clocks = <&xo_board>;
|
||||||
|
clock-names = "xo";
|
||||||
|
};
|
||||||
|
|
||||||
|
power-controller {
|
||||||
|
compatible = "qcom,msm8916-rpmpd";
|
||||||
|
#power-domain-cells = <1>;
|
||||||
|
operating-points-v2 = <&rpmpd_opp_table>;
|
||||||
|
|
||||||
|
rpmpd_opp_table: opp-table {
|
||||||
|
compatible = "operating-points-v2";
|
||||||
|
|
||||||
|
opp-1 {
|
||||||
|
opp-level = <1>;
|
||||||
|
};
|
||||||
|
opp-2 {
|
||||||
|
opp-level = <2>;
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
...
|
};
|
||||||
|
|
|
@ -21,7 +21,7 @@ properties:
|
||||||
|
|
||||||
patternProperties:
|
patternProperties:
|
||||||
"^.*-edge|rpm$":
|
"^.*-edge|rpm$":
|
||||||
type: object
|
$ref: /schemas/remoteproc/qcom,smd-edge.yaml#
|
||||||
description:
|
description:
|
||||||
Each subnode of the SMD node represents a remote subsystem or a remote
|
Each subnode of the SMD node represents a remote subsystem or a remote
|
||||||
processor of some sort - or in SMD language an "edge". The name of the
|
processor of some sort - or in SMD language an "edge". The name of the
|
||||||
|
|
Loading…
Reference in New Issue