0001 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
0002 %YAML 1.2
0003 ---
0004 $id: http://devicetree.org/schemas/phy/intel,phy-thunderbay-emmc.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006
0007 title: Intel Thunder Bay eMMC PHY bindings
0008
0009 maintainers:
0010 - Srikandan Nandhini <nandhini.srikandan@intel.com>
0011
0012 properties:
0013 compatible:
0014 const: intel,thunderbay-emmc-phy
0015
0016 "#phy-cells":
0017 const: 0
0018
0019 reg:
0020 maxItems: 1
0021
0022 clocks:
0023 maxItems: 1
0024
0025 clock-names:
0026 items:
0027 - const: emmcclk
0028
0029 required:
0030 - "#phy-cells"
0031 - compatible
0032 - reg
0033 - clocks
0034
0035 additionalProperties: false
0036
0037 examples:
0038 - |
0039 mmc_phy@80440800 {
0040 #phy-cells = <0x0>;
0041 compatible = "intel,thunderbay-emmc-phy";
0042 status = "okay";
0043 reg = <0x80440800 0x100>;
0044 clocks = <&emmc>;
0045 clock-names = "emmcclk";
0046 };