aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/devicetree/bindings/clock/qcom,videocc.yaml
diff options
context:
space:
mode:
authorDouglas Anderson <dianders@chromium.org>2020-02-03 10:31:44 -0800
committerStephen Boyd <sboyd@kernel.org>2020-02-03 23:05:06 -0800
commit8cff43d46cfcdeb11ee1b48ad86692785a351e0b (patch)
tree4387797f1fe684ff39f96ce766e63fcb9630b18f /Documentation/devicetree/bindings/clock/qcom,videocc.yaml
parentclk: qcom: Use ARRAY_SIZE in gpucc-sc7180 for parent clocks (diff)
downloadlinux-dev-8cff43d46cfcdeb11ee1b48ad86692785a351e0b.tar.xz
linux-dev-8cff43d46cfcdeb11ee1b48ad86692785a351e0b.zip
dt-bindings: clock: Cleanup qcom,videocc bindings for sdm845/sc7180
This makes the qcom,videocc bindings match the recent changes to the dispcc and gpucc. 1. Switched to using "bi_tcxo" instead of "xo". 2. Adds a description for the XO clock. Not terribly important but nice if it cleanly matches its cousins. 3. Updates the example to use the symbolic name for the RPMH clock and also show that the real devices are currently using 2 address cells / size cells and fixes the spacing on the closing brace. 4. Split into 2 files. In this case they could probably share one file, but let's be consistent. Signed-off-by: Douglas Anderson <dianders@chromium.org> Link: https://lkml.kernel.org/r/20200203103049.v4.11.I27bbd90045f38cd3218c259526409d52a48efb35@changeid Signed-off-by: Stephen Boyd <sboyd@kernel.org>
Diffstat (limited to 'Documentation/devicetree/bindings/clock/qcom,videocc.yaml')
-rw-r--r--Documentation/devicetree/bindings/clock/qcom,videocc.yaml62
1 files changed, 0 insertions, 62 deletions
diff --git a/Documentation/devicetree/bindings/clock/qcom,videocc.yaml b/Documentation/devicetree/bindings/clock/qcom,videocc.yaml
deleted file mode 100644
index 43cfc893a8d1..000000000000
--- a/Documentation/devicetree/bindings/clock/qcom,videocc.yaml
+++ /dev/null
@@ -1,62 +0,0 @@
-# SPDX-License-Identifier: GPL-2.0-only
-%YAML 1.2
----
-$id: http://devicetree.org/schemas/bindings/clock/qcom,videocc.yaml#
-$schema: http://devicetree.org/meta-schemas/core.yaml#
-
-title: Qualcomm Video Clock & Reset Controller Binding
-
-maintainers:
- - Taniya Das <tdas@codeaurora.org>
-
-description: |
- Qualcomm video clock control module which supports the clocks, resets and
- power domains.
-
-properties:
- compatible:
- enum:
- - qcom,sc7180-videocc
- - qcom,sdm845-videocc
-
- clocks:
- maxItems: 1
-
- clock-names:
- items:
- - const: xo
-
- '#clock-cells':
- const: 1
-
- '#reset-cells':
- const: 1
-
- '#power-domain-cells':
- const: 1
-
- reg:
- maxItems: 1
-
-required:
- - compatible
- - reg
- - clocks
- - clock-names
- - '#clock-cells'
- - '#reset-cells'
- - '#power-domain-cells'
-
-examples:
- # Example of VIDEOCC with clock node properties for SDM845:
- - |
- clock-controller@ab00000 {
- compatible = "qcom,sdm845-videocc";
- reg = <0xab00000 0x10000>;
- clocks = <&rpmhcc 0>;
- clock-names = "xo";
- #clock-cells = <1>;
- #reset-cells = <1>;
- #power-domain-cells = <1>;
- };
-...