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,armada-375-usb-cluster.yaml# 5$schema: http://devicetree.org/meta-schemas/core.yaml# 6 7title: Armada 375 USB Cluster 8 9maintainers: 10 - Andrew Lunn <andrew@lunn.ch> 11 - Gregory Clement <gregory.clement@bootlin.com> 12 13description: 14 Control register for the Armada 375 USB cluster, managing USB2 and USB3 features. 15 16properties: 17 compatible: 18 const: marvell,armada-375-usb-cluster 19 20 reg: 21 maxItems: 1 22 23 '#phy-cells': 24 description: Number of PHY cells in specifier. 1 for USB2, 2 for USB3. 25 const: 1 26 27required: 28 - compatible 29 - reg 30 - '#phy-cells' 31 32additionalProperties: false 33 34examples: 35 - | 36 usbcluster: usb-cluster@18400 { 37 compatible = "marvell,armada-375-usb-cluster"; 38 reg = <0x18400 0x4>; 39 #phy-cells = <1>; 40 }; 41