xref: /freebsd/sys/contrib/device-tree/Bindings/phy/amlogic,axg-mipi-dphy.yaml (revision fac71e4e09885bb2afa3d984a0c239a52e1a7418)
15def4c47SEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
25def4c47SEmmanuel Vadot# Copyright 2020 BayLibre, SAS
35def4c47SEmmanuel Vadot%YAML 1.2
45def4c47SEmmanuel Vadot---
5*fac71e4eSEmmanuel Vadot$id: http://devicetree.org/schemas/phy/amlogic,axg-mipi-dphy.yaml#
6*fac71e4eSEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml#
75def4c47SEmmanuel Vadot
85def4c47SEmmanuel Vadottitle: Amlogic AXG MIPI D-PHY
95def4c47SEmmanuel Vadot
105def4c47SEmmanuel Vadotmaintainers:
11b97ee269SEmmanuel Vadot  - Neil Armstrong <neil.armstrong@linaro.org>
125def4c47SEmmanuel Vadot
135def4c47SEmmanuel Vadotproperties:
145def4c47SEmmanuel Vadot  compatible:
155def4c47SEmmanuel Vadot    enum:
165def4c47SEmmanuel Vadot      - amlogic,axg-mipi-dphy
175def4c47SEmmanuel Vadot
185def4c47SEmmanuel Vadot  reg:
195def4c47SEmmanuel Vadot    maxItems: 1
205def4c47SEmmanuel Vadot
215def4c47SEmmanuel Vadot  clocks:
225def4c47SEmmanuel Vadot    maxItems: 1
235def4c47SEmmanuel Vadot
245def4c47SEmmanuel Vadot  clock-names:
255def4c47SEmmanuel Vadot    items:
265def4c47SEmmanuel Vadot      - const: pclk
275def4c47SEmmanuel Vadot
285def4c47SEmmanuel Vadot  resets:
295def4c47SEmmanuel Vadot    maxItems: 1
305def4c47SEmmanuel Vadot
315def4c47SEmmanuel Vadot  reset-names:
325def4c47SEmmanuel Vadot    items:
335def4c47SEmmanuel Vadot      - const: phy
345def4c47SEmmanuel Vadot
355def4c47SEmmanuel Vadot  "#phy-cells":
365def4c47SEmmanuel Vadot    const: 0
375def4c47SEmmanuel Vadot
385def4c47SEmmanuel Vadot  phys:
395def4c47SEmmanuel Vadot    maxItems: 1
405def4c47SEmmanuel Vadot
415def4c47SEmmanuel Vadot  phy-names:
425def4c47SEmmanuel Vadot    items:
435def4c47SEmmanuel Vadot      - const: analog
445def4c47SEmmanuel Vadot
455def4c47SEmmanuel Vadotrequired:
465def4c47SEmmanuel Vadot  - compatible
475def4c47SEmmanuel Vadot  - reg
485def4c47SEmmanuel Vadot  - clocks
495def4c47SEmmanuel Vadot  - clock-names
505def4c47SEmmanuel Vadot  - resets
515def4c47SEmmanuel Vadot  - reset-names
525def4c47SEmmanuel Vadot  - phys
535def4c47SEmmanuel Vadot  - phy-names
545def4c47SEmmanuel Vadot  - "#phy-cells"
555def4c47SEmmanuel Vadot
565def4c47SEmmanuel VadotadditionalProperties: false
575def4c47SEmmanuel Vadot
585def4c47SEmmanuel Vadotexamples:
595def4c47SEmmanuel Vadot  - |
605def4c47SEmmanuel Vadot    phy@ff640000 {
615def4c47SEmmanuel Vadot            compatible = "amlogic,axg-mipi-dphy";
625def4c47SEmmanuel Vadot            reg = <0xff640000 0x100>;
635def4c47SEmmanuel Vadot            clocks = <&clk_mipi_dsi_phy>;
645def4c47SEmmanuel Vadot            clock-names = "pclk";
655def4c47SEmmanuel Vadot            resets = <&reset_phy>;
665def4c47SEmmanuel Vadot            reset-names = "phy";
675def4c47SEmmanuel Vadot            phys = <&mipi_pcie_analog_dphy>;
685def4c47SEmmanuel Vadot            phy-names = "analog";
695def4c47SEmmanuel Vadot            #phy-cells = <0>;
705def4c47SEmmanuel Vadot    };
71