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

Commit daf89ddc authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "clk: msm: clock-cpu-8953: Add DT property to enable boost"

parents c715c493 983d4352
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -46,6 +46,11 @@ Optional Properties:
			If defined, the "safe_l" value column is required to be
			defined along with speedX-bin-vY-cl as indicated in
			below example.
- qcom,enable-boost:    Boolean property if defined denotes presence of boost
			available for clusters.
			If defined, the "safe_l" value column is required to be
			defined along with speedX-bin-vY-cl as indicated in
			below example.
- qcom,enable-qos:      Boolean property to indicate the pm qos is required
			during set rate of the cluster clocks, which would not
			allow the cluster cores to go to low power mode.
+3 −1
Original line number Diff line number Diff line
@@ -1597,7 +1597,9 @@ static int clock_cpu_probe(struct platform_device *pdev)

	vmin_en = of_property_read_bool(pdev->dev.of_node,
						"qcom,enable-vmin");
	if (pboost_freq > 0)

	if ((of_property_read_bool(pdev->dev.of_node, "qcom,enable-boost"))
		       && (pboost_freq > 0))
		pboost_en = true;

	rc = cpu_parse_devicetree(pdev);