xref: /freebsd/sys/contrib/device-tree/Bindings/phy/marvell,pxa1928-usb-phy.yaml (revision 84943d6f38e936ac3b7a3947ca26eeb27a39f938)
1*84943d6fSEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2*84943d6fSEmmanuel Vadot%YAML 1.2
3*84943d6fSEmmanuel Vadot---
4*84943d6fSEmmanuel Vadot$id: http://devicetree.org/schemas/phy/marvell,pxa1928-usb-phy.yaml#
5*84943d6fSEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml#
6*84943d6fSEmmanuel Vadot
7*84943d6fSEmmanuel Vadottitle: Marvell PXA1928 USB/HSIC PHY
8*84943d6fSEmmanuel Vadot
9*84943d6fSEmmanuel Vadotmaintainers:
10*84943d6fSEmmanuel Vadot  - Duje Mihanović <duje.mihanovic@skole.hr>
11*84943d6fSEmmanuel Vadot
12*84943d6fSEmmanuel Vadotproperties:
13*84943d6fSEmmanuel Vadot  compatible:
14*84943d6fSEmmanuel Vadot    enum:
15*84943d6fSEmmanuel Vadot      - marvell,pxa1928-usb-phy
16*84943d6fSEmmanuel Vadot      - marvell,pxa1928-hsic-phy
17*84943d6fSEmmanuel Vadot
18*84943d6fSEmmanuel Vadot  reg:
19*84943d6fSEmmanuel Vadot    maxItems: 1
20*84943d6fSEmmanuel Vadot
21*84943d6fSEmmanuel Vadot  clocks:
22*84943d6fSEmmanuel Vadot    maxItems: 1
23*84943d6fSEmmanuel Vadot
24*84943d6fSEmmanuel Vadot  '#phy-cells':
25*84943d6fSEmmanuel Vadot    const: 0
26*84943d6fSEmmanuel Vadot
27*84943d6fSEmmanuel Vadot  resets:
28*84943d6fSEmmanuel Vadot    maxItems: 1
29*84943d6fSEmmanuel Vadot
30*84943d6fSEmmanuel Vadotrequired:
31*84943d6fSEmmanuel Vadot  - compatible
32*84943d6fSEmmanuel Vadot  - reg
33*84943d6fSEmmanuel Vadot  - clocks
34*84943d6fSEmmanuel Vadot  - '#phy-cells'
35*84943d6fSEmmanuel Vadot
36*84943d6fSEmmanuel VadotadditionalProperties: false
37*84943d6fSEmmanuel Vadot
38*84943d6fSEmmanuel Vadotexamples:
39*84943d6fSEmmanuel Vadot  - |
40*84943d6fSEmmanuel Vadot    #include <dt-bindings/clock/marvell,pxa1928.h>
41*84943d6fSEmmanuel Vadot
42*84943d6fSEmmanuel Vadot    usbphy: phy@7000 {
43*84943d6fSEmmanuel Vadot        compatible = "marvell,pxa1928-usb-phy";
44*84943d6fSEmmanuel Vadot        reg = <0x7000 0xe0>;
45*84943d6fSEmmanuel Vadot        clocks = <&apmu PXA1928_CLK_USB>;
46*84943d6fSEmmanuel Vadot        #phy-cells = <0>;
47*84943d6fSEmmanuel Vadot    };
48