aboutsummaryrefslogtreecommitdiff
path: root/rr-cache/ff1da602272756b8afa3ab68f352105db6606030/preimage
blob: a1d12203f3629c3075cae4dd0db15691332f5221 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
<<<<<<<

%YAML 1.2
---
$id: "http://devicetree.org/schemas/phy/qcom,snps-eusb2-phy.yaml#"
$schema: "http://devicetree.org/meta-schemas/core.yaml#"
=======
%YAML 1.2
---
$id: http://devicetree.org/schemas/phy/qcom,snps-eusb2-phy.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#
>>>>>>>

title: Qualcomm SNPS eUSB2 phy controller

maintainers:
  - Abel Vesa <abel.vesa@linaro.org>

description:
  eUSB2 controller supports LS/FS/HS usb connectivity on Qualcomm chipsets.

properties:
  compatible:
    const: qcom,sm8550-snps-eusb2-phy

  reg:
    maxItems: 1

  "#phy-cells":
    const: 0

  clocks:
    items:
      - description: ref

  clock-names:
    items:
      - const: ref

<<<<<<<
  resets:
    maxItems: 1

  phys:
    maxItems: 1
=======
  usb-repeater:
>>>>>>>
    description:
      Phandle to eUSB2 to USB 2.0 repeater

  vdd-supply:
    description:
      Phandle to 0.88V regulator supply to PHY digital circuit.

  vdda12-supply:
    description:
      Phandle to 1.2V regulator supply to PHY refclk pll block.

<<<<<<<
=======
  resets:
    maxItems: 1
    description:
      Phandle to reset to phy block.

>>>>>>>
required:
  - compatible
  - reg
  - "#phy-cells"
  - clocks
  - clock-names
  - vdd-supply
  - vdda12-supply
  - resets

additionalProperties: false

examples:
  - |
<<<<<<<
    #include <dt-bindings/clock/qcom,gcc-sm8550.h>
    #include <dt-bindings/clock/qcom,rpmh.h>
    #include <dt-bindings/clock/qcom,tcsrcc-sm8550.h>
=======
    #include <dt-bindings/clock/qcom,sm8550-gcc.h>
    #include <dt-bindings/clock/qcom,rpmh.h>
    #include <dt-bindings/clock/qcom,sm8550-tcsr.h>
>>>>>>>

    usb_1_hsphy: phy@88e3000 {
        compatible = "qcom,sm8550-snps-eusb2-phy";
        reg = <0x88e3000 0x154>;
        #phy-cells = <0>;

<<<<<<<
        clocks = <&rpmhcc RPMH_CXO_PAD_CLK>,
                 <&tcsrcc TCSR_USB2_CLKREF_EN>;
        clock-names = "ref_src", "ref";
=======
        clocks = <&tcsrcc TCSR_USB2_CLKREF_EN>;
        clock-names = "ref";
>>>>>>>

        vdd-supply = <&vreg_l1e_0p88>;
        vdda12-supply = <&vreg_l3e_1p2>;

        resets = <&gcc GCC_QUSB2PHY_PRIM_BCR>;
    };