xref: /freebsd/sys/contrib/device-tree/Bindings/phy/intel,phy-thunderbay-emmc.yaml (revision 8bab661a3316d8bd9b9fbd11a3b4371b91507bd2)
1e67e8565SEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2e67e8565SEmmanuel Vadot%YAML 1.2
3e67e8565SEmmanuel Vadot---
4e67e8565SEmmanuel Vadot$id: http://devicetree.org/schemas/phy/intel,phy-thunderbay-emmc.yaml#
5e67e8565SEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml#
6e67e8565SEmmanuel Vadot
7*8bab661aSEmmanuel Vadottitle: Intel Thunder Bay eMMC PHY
8e67e8565SEmmanuel Vadot
9e67e8565SEmmanuel Vadotmaintainers:
10e67e8565SEmmanuel Vadot  - Srikandan Nandhini <nandhini.srikandan@intel.com>
11e67e8565SEmmanuel Vadot
12e67e8565SEmmanuel Vadotproperties:
13e67e8565SEmmanuel Vadot  compatible:
14e67e8565SEmmanuel Vadot    const: intel,thunderbay-emmc-phy
15e67e8565SEmmanuel Vadot
16e67e8565SEmmanuel Vadot  "#phy-cells":
17e67e8565SEmmanuel Vadot    const: 0
18e67e8565SEmmanuel Vadot
19e67e8565SEmmanuel Vadot  reg:
20e67e8565SEmmanuel Vadot    maxItems: 1
21e67e8565SEmmanuel Vadot
22e67e8565SEmmanuel Vadot  clocks:
23e67e8565SEmmanuel Vadot    maxItems: 1
24e67e8565SEmmanuel Vadot
25e67e8565SEmmanuel Vadot  clock-names:
26e67e8565SEmmanuel Vadot    items:
27e67e8565SEmmanuel Vadot      - const: emmcclk
28e67e8565SEmmanuel Vadot
29e67e8565SEmmanuel Vadotrequired:
30e67e8565SEmmanuel Vadot  - "#phy-cells"
31e67e8565SEmmanuel Vadot  - compatible
32e67e8565SEmmanuel Vadot  - reg
33e67e8565SEmmanuel Vadot  - clocks
34e67e8565SEmmanuel Vadot
35e67e8565SEmmanuel VadotadditionalProperties: false
36e67e8565SEmmanuel Vadot
37e67e8565SEmmanuel Vadotexamples:
38e67e8565SEmmanuel Vadot  - |
39e67e8565SEmmanuel Vadot    mmc_phy@80440800 {
40e67e8565SEmmanuel Vadot        #phy-cells = <0x0>;
41e67e8565SEmmanuel Vadot        compatible = "intel,thunderbay-emmc-phy";
42e67e8565SEmmanuel Vadot        reg = <0x80440800 0x100>;
43e67e8565SEmmanuel Vadot        clocks = <&emmc>;
44e67e8565SEmmanuel Vadot        clock-names = "emmcclk";
45e67e8565SEmmanuel Vadot    };
46