-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dt-bindings: clock: qcom,rpmcc: convert to dtschema
Convert the Qualcomm RPM Clock Controller bindings to DT schema and include it in parent's schema (SMD RPM). Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> Reviewed-by: Rob Herring <robh@kernel.org> Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org> Link: https://lore.kernel.org/r/20220401201035.189106-10-krzysztof.kozlowski@linaro.org
- Loading branch information
Krzysztof Kozlowski
authored and
Bjorn Andersson
committed
Apr 13, 2022
1 parent
a9dd266
commit 05a2441
Showing
3 changed files
with
73 additions
and
63 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause | ||
%YAML 1.2 | ||
--- | ||
$id: http://devicetree.org/schemas/clock/qcom,rpmcc.yaml# | ||
$schema: http://devicetree.org/meta-schemas/core.yaml# | ||
|
||
title: Qualcomm RPM Clock Controller | ||
|
||
maintainers: | ||
- Bjorn Andersson <bjorn.andersson@linaro.org> | ||
- Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> | ||
|
||
description: | | ||
The clock enumerators are defined in <dt-bindings/clock/qcom,rpmcc.h> and | ||
come in pairs:: FOO_CLK followed by FOO_A_CLK. The latter clock is | ||
an "active" clock, which means that the consumer only care that the clock is | ||
available when the apps CPU subsystem is active, i.e. not suspended or in | ||
deep idle. If it is important that the clock keeps running during system | ||
suspend, you need to specify the non-active clock, the one not containing | ||
*_A_* in the enumerator name. | ||
properties: | ||
compatible: | ||
items: | ||
- enum: | ||
- qcom,rpmcc-apq8060 | ||
- qcom,rpmcc-apq8064 | ||
- qcom,rpmcc-ipq806x | ||
- qcom,rpmcc-mdm9607 | ||
- qcom,rpmcc-msm8226 | ||
- qcom,rpmcc-msm8660 | ||
- qcom,rpmcc-msm8916 | ||
- qcom,rpmcc-msm8936 | ||
- qcom,rpmcc-msm8953 | ||
- qcom,rpmcc-msm8974 | ||
- qcom,rpmcc-msm8976 | ||
- qcom,rpmcc-msm8992 | ||
- qcom,rpmcc-msm8994 | ||
- qcom,rpmcc-msm8996 | ||
- qcom,rpmcc-msm8998 | ||
- qcom,rpmcc-qcm2290 | ||
- qcom,rpmcc-qcs404 | ||
- qcom,rpmcc-sdm660 | ||
- qcom,rpmcc-sm6115 | ||
- qcom,rpmcc-sm6125 | ||
- const: qcom,rpmcc | ||
|
||
'#clock-cells': | ||
const: 1 | ||
|
||
required: | ||
- compatible | ||
- '#clock-cells' | ||
|
||
additionalProperties: false | ||
|
||
examples: | ||
- | | ||
rpm { | ||
rpm-requests { | ||
compatible = "qcom,rpm-msm8916"; | ||
qcom,smd-channels = "rpm_requests"; | ||
clock-controller { | ||
compatible = "qcom,rpmcc-msm8916", "qcom,rpmcc"; | ||
#clock-cells = <1>; | ||
}; | ||
}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters