1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2%YAML 1.2 3--- 4$id: http://devicetree.org/schemas/phy/hisilicon,hi6220-usb-phy.yaml# 5$schema: http://devicetree.org/meta-schemas/core.yaml# 6 7title: Hisilicon hi6220 USB PHY 8 9maintainers: 10 - Zhangfei Gao <zhangfei.gao@linaro.org> 11 12properties: 13 compatible: 14 const: hisilicon,hi6220-usb-phy 15 16 '#phy-cells': 17 const: 0 18 19 phy-supply: 20 description: PHY power supply. 21 22 hisilicon,peripheral-syscon: 23 description: Phandle to the system controller for PHY control. 24 $ref: /schemas/types.yaml#/definitions/phandle 25 26additionalProperties: false 27 28examples: 29 - | 30 usbphy { 31 compatible = "hisilicon,hi6220-usb-phy"; 32 #phy-cells = <0>; 33 phy-supply = <&fixed_5v_hub>; 34 hisilicon,peripheral-syscon = <&sys_ctrl>; 35 }; 36