brintos

brintos / linux-shallow public Read only

0
0
Text · 4.4 KiB · 0e0b6ca Raw
195 lines · yaml
1# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)2%YAML 1.23---4$id: http://devicetree.org/schemas/phy/qcom,sc8280xp-qmp-usb3-uni-phy.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Qualcomm QMP PHY controller (USB, SC8280XP)8 9maintainers:10  - Vinod Koul <vkoul@kernel.org>11 12description:13  The QMP PHY controller supports physical layer functionality for a number of14  controllers on Qualcomm chipsets, such as, PCIe, UFS, and USB.15 16properties:17  compatible:18    enum:19      - qcom,ipq6018-qmp-usb3-phy20      - qcom,ipq8074-qmp-usb3-phy21      - qcom,ipq9574-qmp-usb3-phy22      - qcom,msm8996-qmp-usb3-phy23      - qcom,qdu1000-qmp-usb3-uni-phy24      - qcom,sa8775p-qmp-usb3-uni-phy25      - qcom,sc8180x-qmp-usb3-uni-phy26      - qcom,sc8280xp-qmp-usb3-uni-phy27      - qcom,sdm845-qmp-usb3-uni-phy28      - qcom,sdx55-qmp-usb3-uni-phy29      - qcom,sdx65-qmp-usb3-uni-phy30      - qcom,sdx75-qmp-usb3-uni-phy31      - qcom,sm8150-qmp-usb3-uni-phy32      - qcom,sm8250-qmp-usb3-uni-phy33      - qcom,sm8350-qmp-usb3-uni-phy34      - qcom,x1e80100-qmp-usb3-uni-phy35 36 37  reg:38    maxItems: 139 40  clocks:41    minItems: 442    maxItems: 543 44  clock-names:45    minItems: 446    maxItems: 547 48  power-domains:49    maxItems: 150 51  resets:52    maxItems: 253 54  reset-names:55    items:56      - const: phy57      - const: phy_phy58 59  vdda-phy-supply: true60 61  vdda-pll-supply: true62 63  "#clock-cells":64    const: 065 66  clock-output-names:67    maxItems: 168 69  "#phy-cells":70    const: 071 72required:73  - compatible74  - reg75  - clocks76  - clock-names77  - resets78  - reset-names79  - vdda-phy-supply80  - vdda-pll-supply81  - "#clock-cells"82  - clock-output-names83  - "#phy-cells"84 85allOf:86  - if:87      properties:88        compatible:89          contains:90            enum:91              - qcom,ipq6018-qmp-usb3-phy92              - qcom,ipq8074-qmp-usb3-phy93              - qcom,ipq9574-qmp-usb3-phy94              - qcom,msm8996-qmp-usb3-phy95              - qcom,sdx55-qmp-usb3-uni-phy96              - qcom,sdx65-qmp-usb3-uni-phy97              - qcom,sdx75-qmp-usb3-uni-phy98    then:99      properties:100        clocks:101          maxItems: 4102        clock-names:103          items:104            - const: aux105            - const: ref106            - const: cfg_ahb107            - const: pipe108 109  - if:110      properties:111        compatible:112          contains:113            enum:114              - qcom,qdu1000-qmp-usb3-uni-phy115              - qcom,sa8775p-qmp-usb3-uni-phy116              - qcom,sc8180x-qmp-usb3-uni-phy117              - qcom,sc8280xp-qmp-usb3-uni-phy118              - qcom,sm8150-qmp-usb3-uni-phy119              - qcom,sm8250-qmp-usb3-uni-phy120              - qcom,sm8350-qmp-usb3-uni-phy121              - qcom,x1e80100-qmp-usb3-uni-phy122    then:123      properties:124        clocks:125          maxItems: 4126        clock-names:127          items:128            - const: aux129            - const: ref130            - const: com_aux131            - const: pipe132 133  - if:134      properties:135        compatible:136          contains:137            enum:138              - qcom,sdm845-qmp-usb3-uni-phy139    then:140      properties:141        clocks:142          maxItems: 5143        clock-names:144          items:145            - const: aux146            - const: cfg_ahb147            - const: ref148            - const: com_aux149            - const: pipe150 151  - if:152      properties:153        compatible:154          contains:155            enum:156              - qcom,sa8775p-qmp-usb3-uni-phy157              - qcom,sc8180x-qmp-usb3-uni-phy158              - qcom,sc8280xp-qmp-usb3-uni-phy159              - qcom,x1e80100-qmp-usb3-uni-phy160    then:161      required:162        - power-domains163 164additionalProperties: false165 166examples:167  - |168    #include <dt-bindings/clock/qcom,gcc-sc8280xp.h>169    #include <dt-bindings/clock/qcom,rpmh.h>170 171    phy@88ef000 {172      compatible = "qcom,sc8280xp-qmp-usb3-uni-phy";173      reg = <0x088ef000 0x2000>;174 175      clocks = <&gcc GCC_USB3_MP_PHY_AUX_CLK>,176               <&gcc GCC_USB3_MP0_CLKREF_CLK>,177               <&gcc GCC_USB3_MP_PHY_COM_AUX_CLK>,178               <&gcc GCC_USB3_MP_PHY_PIPE_0_CLK>;179      clock-names = "aux", "ref", "com_aux", "pipe";180 181      power-domains = <&gcc USB30_MP_GDSC>;182 183      resets = <&gcc GCC_USB3_UNIPHY_MP0_BCR>,184               <&gcc GCC_USB3UNIPHY_PHY_MP0_BCR>;185      reset-names = "phy", "phy_phy";186 187      vdda-phy-supply = <&vreg_l3a>;188      vdda-pll-supply = <&vreg_l5a>;189 190      #clock-cells = <0>;191      clock-output-names = "usb2_phy0_pipe_clk";192 193      #phy-cells = <0>;194    };195