Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6b49e1df authored by Amit Nischal's avatar Amit Nischal Committed by Gerrit - the friendly Code Review server
Browse files

clk: qcom: clk-rpmh: add support for clk-rpmh driver for SDMMAGPIE



Add the support for clock RPMh driver to vote for ARC and VRM
managed clock resources.

Change-Id: I251867eee9b2f072a5e211a0eaee1bbd37fb8632
Signed-off-by: default avatarAmit Nischal <anischal@codeaurora.org>
parent 20768179
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
Qualcomm Technologies, Inc. RPMh Clocks

Required properties:
- compatible:	Must contain "qcom,rpmh-clk-sm8150" or
		"qcom,rpmh-clk-sdmshrike" or "qcom,rpmh-clk-sm6150".
- compatible:	Must contain one of the following:
		"qcom,rpmh-clk-sm6150",
		"qcom,rpmh-clk-sm8150",
		"qcom,rpmh-clk-sdmshrike",
		"qcom,rpmh-clk-sdmmagpie".
- #clock-cells:	Must contain 1.
- mboxes:	List of RPMh mailbox phandle and channel identifier tuples.
- mbox-names:	List of names to identify the RPMh mailboxes used.
+1 −0
Original line number Diff line number Diff line
@@ -371,6 +371,7 @@ static const struct of_device_id clk_rpmh_match_table[] = {
	{ .compatible = "qcom,rpmh-clk-sm8150", .data = &clk_rpmh_sm8150},
	{ .compatible = "qcom,rpmh-clk-sdmshrike", .data = &clk_rpmh_sdmshrike},
	{ .compatible = "qcom,rpmh-clk-sm6150", .data = &clk_rpmh_sm6150},
	{ .compatible = "qcom,rpmh-clk-sdmmagpie", .data = &clk_rpmh_sm6150},
	{ }
};
MODULE_DEVICE_TABLE(of, clk_rpmh_match_table);