xref: /linux/Documentation/devicetree/bindings/phy/spacemit,usb2-phy.yaml (revision 1fd1dc41724319406b0aff221a352a400b0ddfc5)
1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2%YAML 1.2
3---
4$id: http://devicetree.org/schemas/phy/spacemit,usb2-phy.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: SpacemiT K1 SoC USB 2.0 PHY
8
9maintainers:
10  - Ze Huang <huang.ze@linux.dev>
11
12properties:
13  compatible:
14    const: spacemit,k1-usb2-phy
15
16  reg:
17    maxItems: 1
18
19  clocks:
20    maxItems: 1
21
22  "#phy-cells":
23    const: 0
24
25required:
26  - compatible
27  - reg
28  - clocks
29  - "#phy-cells"
30
31additionalProperties: false
32
33examples:
34  - |
35    usb-phy@c09c0000 {
36        compatible = "spacemit,k1-usb2-phy";
37        reg = <0xc09c0000 0x200>;
38        clocks = <&syscon_apmu 15>;
39        #phy-cells = <0>;
40    };
41