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,pxa1928-usb-phy.yaml# 5$schema: http://devicetree.org/meta-schemas/core.yaml# 6 7title: Marvell PXA1928 USB/HSIC PHY 8 9maintainers: 10 - Duje Mihanović <duje.mihanovic@skole.hr> 11 12properties: 13 compatible: 14 enum: 15 - marvell,pxa1928-usb-phy 16 - marvell,pxa1928-hsic-phy 17 18 reg: 19 maxItems: 1 20 21 clocks: 22 maxItems: 1 23 24 '#phy-cells': 25 const: 0 26 27 resets: 28 maxItems: 1 29 30required: 31 - compatible 32 - reg 33 - clocks 34 - '#phy-cells' 35 36additionalProperties: false 37 38examples: 39 - | 40 #include <dt-bindings/clock/marvell,pxa1928.h> 41 42 usbphy: phy@7000 { 43 compatible = "marvell,pxa1928-usb-phy"; 44 reg = <0x7000 0xe0>; 45 clocks = <&apmu PXA1928_CLK_USB>; 46 #phy-cells = <0>; 47 }; 48