1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2%YAML 1.2 3--- 4$id: http://devicetree.org/schemas/phy/marvell,mmp2-usb-phy.yaml# 5$schema: http://devicetree.org/meta-schemas/core.yaml# 6 7title: Marvell MMP2/PXA USB PHY 8 9maintainers: 10 - Lubomir Rintel <lkundrak@v3.sk> 11 12properties: 13 compatible: 14 enum: 15 - marvell,mmp2-usb-phy 16 - marvell,pxa910-usb-phy 17 - marvell,pxa168-usb-phy 18 19 reg: 20 maxItems: 1 21 22 "#phy-cells": 23 const: 0 24 25required: 26 - compatible 27 - "#phy-cells" 28 29additionalProperties: false 30 31examples: 32 - | 33 usbphy@d4207000 { 34 compatible = "marvell,mmp2-usb-phy"; 35 reg = <0xd4207000 0x40>; 36 #phy-cells = <0>; 37 }; 38