0001 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
0002 %YAML 1.2
0003 ---
0004 $id: http://devicetree.org/schemas/phy/cdns,dphy-rx.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006
0007 title: Cadence DPHY Rx Device Tree Bindings
0008
0009 maintainers:
0010 - Pratyush Yadav <p.yadav@ti.com>
0011
0012 properties:
0013 compatible:
0014 items:
0015 - const: cdns,dphy-rx
0016
0017 reg:
0018 maxItems: 1
0019
0020 "#phy-cells":
0021 const: 0
0022
0023 power-domains:
0024 maxItems: 1
0025
0026 required:
0027 - compatible
0028 - reg
0029 - "#phy-cells"
0030
0031 additionalProperties: false
0032
0033 examples:
0034 - |
0035 #include <dt-bindings/soc/ti,sci_pm_domain.h>
0036
0037 dphy0: phy@4580000 {
0038 compatible = "cdns,dphy-rx";
0039 reg = <0x4580000 0x1100>;
0040 #phy-cells = <0>;
0041 power-domains = <&k3_pds 147 TI_SCI_PD_EXCLUSIVE>;
0042 };