0001 # SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
0002 # Copyright 2020 BayLibre, SAS
0003 %YAML 1.2
0004 ---
0005 $id: "http://devicetree.org/schemas/phy/amlogic,axg-mipi-dphy.yaml#"
0006 $schema: "http://devicetree.org/meta-schemas/core.yaml#"
0007
0008 title: Amlogic AXG MIPI D-PHY
0009
0010 maintainers:
0011 - Neil Armstrong <neil.armstrong@linaro.org>
0012
0013 properties:
0014 compatible:
0015 enum:
0016 - amlogic,axg-mipi-dphy
0017
0018 reg:
0019 maxItems: 1
0020
0021 clocks:
0022 maxItems: 1
0023
0024 clock-names:
0025 items:
0026 - const: pclk
0027
0028 resets:
0029 maxItems: 1
0030
0031 reset-names:
0032 items:
0033 - const: phy
0034
0035 "#phy-cells":
0036 const: 0
0037
0038 phys:
0039 maxItems: 1
0040
0041 phy-names:
0042 items:
0043 - const: analog
0044
0045 required:
0046 - compatible
0047 - reg
0048 - clocks
0049 - clock-names
0050 - resets
0051 - reset-names
0052 - phys
0053 - phy-names
0054 - "#phy-cells"
0055
0056 additionalProperties: false
0057
0058 examples:
0059 - |
0060 phy@ff640000 {
0061 compatible = "amlogic,axg-mipi-dphy";
0062 reg = <0xff640000 0x100>;
0063 clocks = <&clk_mipi_dsi_phy>;
0064 clock-names = "pclk";
0065 resets = <&reset_phy>;
0066 reset-names = "phy";
0067 phys = <&mipi_pcie_analog_dphy>;
0068 phy-names = "analog";
0069 #phy-cells = <0>;
0070 };