mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-08-25 00:27:35 +00:00

DTS example in the bindings should be indented with 2- or 4-spaces and aligned with opening '- |', so correct any differences like 3-spaces or mixtures 2- and 4-spaces in one binding. No functional changes here, but saves some comments during reviews of new patches built on existing code. Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> Reviewed-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com> Reviewed-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com> Reviewed-by: Abhinav Kumar <quic_abhinavk@quicinc.com> Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> # msm Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be> # renesas Link: https://lore.kernel.org/r/20250107125854.227233-1-krzysztof.kozlowski@linaro.org Signed-off-by: Rob Herring (Arm) <robh@kernel.org>
71 lines
1.5 KiB
YAML
71 lines
1.5 KiB
YAML
# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
|
|
%YAML 1.2
|
|
---
|
|
$id: http://devicetree.org/schemas/display/msm/dsi-phy-20nm.yaml#
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
title: Qualcomm Display DSI 20nm PHY
|
|
|
|
maintainers:
|
|
- Krishna Manikandan <quic_mkrishn@quicinc.com>
|
|
|
|
allOf:
|
|
- $ref: dsi-phy-common.yaml#
|
|
|
|
properties:
|
|
compatible:
|
|
const: qcom,dsi-phy-20nm
|
|
|
|
reg:
|
|
items:
|
|
- description: dsi pll register set
|
|
- description: dsi phy register set
|
|
- description: dsi phy regulator register set
|
|
|
|
reg-names:
|
|
items:
|
|
- const: dsi_pll
|
|
- const: dsi_phy
|
|
- const: dsi_phy_regulator
|
|
|
|
vcca-supply:
|
|
description: Phandle to vcca regulator device node.
|
|
|
|
vddio-supply:
|
|
description: Phandle to vdd-io regulator device node.
|
|
|
|
required:
|
|
- compatible
|
|
- reg
|
|
- reg-names
|
|
- vddio-supply
|
|
- vcca-supply
|
|
|
|
unevaluatedProperties: false
|
|
|
|
examples:
|
|
- |
|
|
#include <dt-bindings/clock/qcom,dispcc-sdm845.h>
|
|
#include <dt-bindings/clock/qcom,rpmh.h>
|
|
|
|
dsi-phy@fd922a00 {
|
|
compatible = "qcom,dsi-phy-20nm";
|
|
reg = <0xfd922a00 0xd4>,
|
|
<0xfd922b00 0x2b0>,
|
|
<0xfd922d80 0x7b>;
|
|
reg-names = "dsi_pll",
|
|
"dsi_phy",
|
|
"dsi_phy_regulator";
|
|
|
|
#clock-cells = <1>;
|
|
#phy-cells = <0>;
|
|
|
|
vcca-supply = <&vcca_reg>;
|
|
vddio-supply = <&vddio_reg>;
|
|
|
|
clocks = <&dispcc DISP_CC_MDSS_AHB_CLK>,
|
|
<&rpmhcc RPMH_CXO_CLK>;
|
|
clock-names = "iface", "ref";
|
|
};
|
|
...
|