mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-22 10:34:55 +08:00
d39f99568d
Add compatible string for the supported eDP PHY on sc7280 platform. Signed-off-by: Sankeerth Billakanti <quic_sbillaka@quicinc.com> Reviewed-by: Stephen Boyd <swboyd@chromium.org> Signed-off-by: Douglas Anderson <dianders@chromium.org> Link: https://lore.kernel.org/r/20220207161612.REPOST.v1.1.Iee1d505f0a35c2805f0468625b117d2e0f0ad339@changeid Signed-off-by: Vinod Koul <vkoul@kernel.org>
70 lines
1.3 KiB
YAML
70 lines
1.3 KiB
YAML
# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
|
|
|
|
%YAML 1.2
|
|
---
|
|
$id: "http://devicetree.org/schemas/phy/qcom,edp-phy.yaml#"
|
|
$schema: "http://devicetree.org/meta-schemas/core.yaml#"
|
|
|
|
title: Qualcomm eDP PHY
|
|
|
|
maintainers:
|
|
- Bjorn Andersson <bjorn.andersson@linaro.org>
|
|
|
|
description:
|
|
The Qualcomm eDP PHY is found in a number of Qualcomm platform and provides
|
|
the physical interface for Embedded Display Port.
|
|
|
|
properties:
|
|
compatible:
|
|
enum:
|
|
- qcom,sc7280-edp-phy
|
|
- qcom,sc8180x-edp-phy
|
|
|
|
reg:
|
|
items:
|
|
- description: PHY base register block
|
|
- description: tx0 register block
|
|
- description: tx1 register block
|
|
- description: PLL register block
|
|
|
|
clocks:
|
|
maxItems: 2
|
|
|
|
clock-names:
|
|
items:
|
|
- const: aux
|
|
- const: cfg_ahb
|
|
|
|
"#clock-cells":
|
|
const: 1
|
|
|
|
"#phy-cells":
|
|
const: 0
|
|
|
|
required:
|
|
- compatible
|
|
- reg
|
|
- clocks
|
|
- clock-names
|
|
- "#clock-cells"
|
|
- "#phy-cells"
|
|
|
|
additionalProperties: false
|
|
|
|
examples:
|
|
- |
|
|
phy@aec2a00 {
|
|
compatible = "qcom,sc8180x-edp-phy";
|
|
reg = <0x0aec2a00 0x1c0>,
|
|
<0x0aec2200 0xa0>,
|
|
<0x0aec2600 0xa0>,
|
|
<0x0aec2000 0x19c>;
|
|
|
|
clocks = <&dispcc 0>, <&dispcc 1>;
|
|
clock-names = "aux", "cfg_ahb";
|
|
|
|
#clock-cells = <1>;
|
|
#phy-cells = <0>;
|
|
};
|
|
...
|