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

Commit d279098d authored by qctecmdr's avatar qctecmdr Committed by Gerrit - the friendly Code Review server
Browse files

Merge "dt-bindings: clocks: Add gpu cc clock controller bindings for Lahaina"

parents 8c6f6ddc 570a1683
Loading
Loading
Loading
Loading
+18 −4
Original line number Diff line number Diff line
Qualcomm Graphics Clock & Reset Controller Binding
--------------------------------------------------
Qualcomm Technologies, Inc. Graphics Clock & Reset Controller Binding
--------------------------------------------------------------------

Required properties :
- compatible : shall contain "qcom,sdm845-gpucc" or "qcom,msm8998-gpucc"
- reg : shall contain base register location and length
- compatible : shall contain "qcom,sdm845-gpucc" or "qcom,msm8998-gpucc",
		"qcom,lahaina-gpucc.
- reg: shall contain base register offset and size.
- reg-names: names of registers listed in the same order as in the reg property.
		Must contain "cc_base".
- #clock-cells : from common clock binding, shall contain 1
- #reset-cells : from common reset binding, shall contain 1

Optional properties :
- #power-domain-cells : from generic power domain binding, shall contain 1
- clocks : shall contain the XO clock
	   shall contain the gpll0 out main clock (msm8998)
@@ -13,6 +18,7 @@ Required properties :
		shall be "gpll0" (msm8998)

Example:
1.
	gpucc: clock-controller@5090000 {
		compatible = "qcom,sdm845-gpucc";
		reg = <0x5090000 0x9000>;
@@ -22,3 +28,11 @@ Example:
		clocks = <&rpmhcc RPMH_CXO_CLK>;
		clock-names = "xo";
	};
2.
	clock_gpucc: clock-controller@3d90000 {
		compatible = "qcom,lahaina-gpucc";
		reg = <0x3d90000 0x9000>;
		reg-names = "cc_base";
		#clock-cells = <1>;
		#reset-cells = <1>;
	};