0001 # SPDX-License-Identifier: (GPL-2.0-or-later OR BSD-2-Clause)
0002 # Copyright 2019,2020 Lubomir Rintel <lkundrak@v3.sk>
0003 %YAML 1.2
0004 ---
0005 $id: http://devicetree.org/schemas/phy/marvell,mmp3-usb-phy.yaml#
0006 $schema: http://devicetree.org/meta-schemas/core.yaml#
0007
0008 title: Marvell MMP3 USB PHY bindings
0009
0010 maintainers:
0011 - Lubomir Rintel <lkundrak@v3.sk>
0012
0013 properties:
0014 $nodename:
0015 pattern: '^usb-phy@[a-f0-9]+$'
0016
0017 compatible:
0018 const: marvell,mmp3-usb-phy
0019
0020 reg:
0021 maxItems: 1
0022 description: base address of the device
0023
0024 '#phy-cells':
0025 const: 0
0026
0027 required:
0028 - compatible
0029 - reg
0030 - '#phy-cells'
0031
0032 additionalProperties: false
0033
0034 examples:
0035 - |
0036 usb-phy@d4207000 {
0037 compatible = "marvell,mmp3-usb-phy";
0038 reg = <0xd4207000 0x40>;
0039 #phy-cells = <0>;
0040 };
0041
0042 ...