mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-09-04 02:25:58 +00:00

Add device tree bindings for video clock controller for SM6350 SoCs. Signed-off-by: Konrad Dybcio <konradybcio@kernel.org> Co-developed-by: Luca Weiss <luca.weiss@fairphone.com> Signed-off-by: Luca Weiss <luca.weiss@fairphone.com> Acked-by: Rob Herring (Arm) <robh@kernel.org> Link: https://lore.kernel.org/r/20250324-sm6350-videocc-v2-2-cc22386433f4@fairphone.com Signed-off-by: Bjorn Andersson <andersson@kernel.org>
162 lines
3.6 KiB
YAML
162 lines
3.6 KiB
YAML
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
|
|
%YAML 1.2
|
|
---
|
|
$id: http://devicetree.org/schemas/clock/qcom,videocc.yaml#
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
title: Qualcomm Video Clock & Reset Controller
|
|
|
|
maintainers:
|
|
- Taniya Das <quic_tdas@quicinc.com>
|
|
|
|
description: |
|
|
Qualcomm video clock control module provides the clocks, resets and power
|
|
domains on Qualcomm SoCs.
|
|
|
|
See also::
|
|
include/dt-bindings/clock/qcom,sm6350-videocc.h
|
|
include/dt-bindings/clock/qcom,videocc-sc7180.h
|
|
include/dt-bindings/clock/qcom,videocc-sc7280.h
|
|
include/dt-bindings/clock/qcom,videocc-sdm845.h
|
|
include/dt-bindings/clock/qcom,videocc-sm8150.h
|
|
include/dt-bindings/clock/qcom,videocc-sm8250.h
|
|
|
|
properties:
|
|
compatible:
|
|
enum:
|
|
- qcom,sc7180-videocc
|
|
- qcom,sc7280-videocc
|
|
- qcom,sdm845-videocc
|
|
- qcom,sm6350-videocc
|
|
- qcom,sm8150-videocc
|
|
- qcom,sm8250-videocc
|
|
|
|
clocks:
|
|
minItems: 1
|
|
maxItems: 3
|
|
|
|
clock-names:
|
|
minItems: 1
|
|
maxItems: 3
|
|
|
|
power-domains:
|
|
description:
|
|
A phandle and PM domain specifier for the MMCX power domain.
|
|
maxItems: 1
|
|
|
|
required-opps:
|
|
description:
|
|
A phandle to an OPP node describing required MMCX performance point.
|
|
maxItems: 1
|
|
|
|
required:
|
|
- compatible
|
|
- clocks
|
|
- clock-names
|
|
- '#power-domain-cells'
|
|
|
|
allOf:
|
|
- $ref: qcom,gcc.yaml#
|
|
|
|
- if:
|
|
properties:
|
|
compatible:
|
|
enum:
|
|
- qcom,sc7180-videocc
|
|
- qcom,sdm845-videocc
|
|
then:
|
|
properties:
|
|
clocks:
|
|
items:
|
|
- description: Board XO source
|
|
clock-names:
|
|
items:
|
|
- const: bi_tcxo
|
|
|
|
- if:
|
|
properties:
|
|
compatible:
|
|
enum:
|
|
- qcom,sc7280-videocc
|
|
then:
|
|
properties:
|
|
clocks:
|
|
items:
|
|
- description: Board XO source
|
|
- description: Board active XO source
|
|
clock-names:
|
|
items:
|
|
- const: bi_tcxo
|
|
- const: bi_tcxo_ao
|
|
|
|
- if:
|
|
properties:
|
|
compatible:
|
|
enum:
|
|
- qcom,sm6350-videocc
|
|
then:
|
|
properties:
|
|
clocks:
|
|
items:
|
|
- description: Video AHB clock from GCC
|
|
- description: Board XO source
|
|
- description: Sleep Clock source
|
|
clock-names:
|
|
items:
|
|
- const: iface
|
|
- const: bi_tcxo
|
|
- const: sleep_clk
|
|
|
|
- if:
|
|
properties:
|
|
compatible:
|
|
enum:
|
|
- qcom,sm8150-videocc
|
|
then:
|
|
properties:
|
|
clocks:
|
|
items:
|
|
- description: AHB
|
|
- description: Board XO source
|
|
clock-names:
|
|
items:
|
|
- const: iface
|
|
- const: bi_tcxo
|
|
|
|
- if:
|
|
properties:
|
|
compatible:
|
|
enum:
|
|
- qcom,sm8250-videocc
|
|
then:
|
|
properties:
|
|
clocks:
|
|
items:
|
|
- description: AHB
|
|
- description: Board XO source
|
|
- description: Board active XO source
|
|
clock-names:
|
|
items:
|
|
- const: iface
|
|
- const: bi_tcxo
|
|
- const: bi_tcxo_ao
|
|
|
|
unevaluatedProperties: false
|
|
|
|
examples:
|
|
- |
|
|
#include <dt-bindings/clock/qcom,rpmh.h>
|
|
#include <dt-bindings/power/qcom,rpmhpd.h>
|
|
clock-controller@ab00000 {
|
|
compatible = "qcom,sdm845-videocc";
|
|
reg = <0x0ab00000 0x10000>;
|
|
clocks = <&rpmhcc RPMH_CXO_CLK>;
|
|
clock-names = "bi_tcxo";
|
|
#clock-cells = <1>;
|
|
#reset-cells = <1>;
|
|
#power-domain-cells = <1>;
|
|
power-domains = <&rpmhpd RPMHPD_MMCX>;
|
|
required-opps = <&rpmhpd_opp_low_svs>;
|
|
};
|
|
...
|