1*5def4c47SEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2*5def4c47SEmmanuel Vadot%YAML 1.2 3*5def4c47SEmmanuel Vadot--- 4*5def4c47SEmmanuel Vadot$id: http://devicetree.org/schemas/phy/intel,phy-keembay-usb.yaml# 5*5def4c47SEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml# 6*5def4c47SEmmanuel Vadot 7*5def4c47SEmmanuel Vadottitle: Intel Keem Bay USB PHY bindings 8*5def4c47SEmmanuel Vadot 9*5def4c47SEmmanuel Vadotmaintainers: 10*5def4c47SEmmanuel Vadot - Wan Ahmad Zainie <wan.ahmad.zainie.wan.mohamad@intel.com> 11*5def4c47SEmmanuel Vadot 12*5def4c47SEmmanuel Vadotproperties: 13*5def4c47SEmmanuel Vadot compatible: 14*5def4c47SEmmanuel Vadot const: intel,keembay-usb-phy 15*5def4c47SEmmanuel Vadot 16*5def4c47SEmmanuel Vadot reg: 17*5def4c47SEmmanuel Vadot items: 18*5def4c47SEmmanuel Vadot - description: USB APB CPR (clock, power, reset) register 19*5def4c47SEmmanuel Vadot - description: USB APB slave register 20*5def4c47SEmmanuel Vadot 21*5def4c47SEmmanuel Vadot reg-names: 22*5def4c47SEmmanuel Vadot items: 23*5def4c47SEmmanuel Vadot - const: cpr-apb-base 24*5def4c47SEmmanuel Vadot - const: slv-apb-base 25*5def4c47SEmmanuel Vadot 26*5def4c47SEmmanuel Vadot '#phy-cells': 27*5def4c47SEmmanuel Vadot const: 0 28*5def4c47SEmmanuel Vadot 29*5def4c47SEmmanuel Vadotrequired: 30*5def4c47SEmmanuel Vadot - compatible 31*5def4c47SEmmanuel Vadot - reg 32*5def4c47SEmmanuel Vadot - '#phy-cells' 33*5def4c47SEmmanuel Vadot 34*5def4c47SEmmanuel VadotadditionalProperties: false 35*5def4c47SEmmanuel Vadot 36*5def4c47SEmmanuel Vadotexamples: 37*5def4c47SEmmanuel Vadot - | 38*5def4c47SEmmanuel Vadot usb-phy@20400000 { 39*5def4c47SEmmanuel Vadot compatible = "intel,keembay-usb-phy"; 40*5def4c47SEmmanuel Vadot reg = <0x20400000 0x1c>, 41*5def4c47SEmmanuel Vadot <0x20480000 0xd0>; 42*5def4c47SEmmanuel Vadot reg-names = "cpr-apb-base", "slv-apb-base"; 43*5def4c47SEmmanuel Vadot #phy-cells = <0>; 44*5def4c47SEmmanuel Vadot }; 45