6a98844a5a
SM8150 videocc needs AHB clock, so update the bindings for sm8150
to add the AHB clock.
Fixes: df3f61d2cd
("dt-bindings: clock: add SM8150 QCOM video clock bindings")
Signed-off-by: Satya Priya Kakitapalli <quic_skakitap@quicinc.com>
Link: https://lore.kernel.org/r/20240509-videocc-sm8150-dt-node-v4-1-e9617f65e946@quicinc.com
Signed-off-by: Bjorn Andersson <andersson@kernel.org>
142 lines
3.1 KiB
YAML
142 lines
3.1 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,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,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,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>;
|
|
};
|
|
...
|