Back to home page

OSCL-LXR

 
 

    


0001 # SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
0002 %YAML 1.2
0003 ---
0004 $id: "http://devicetree.org/schemas/phy/qcom-usb-ipq4019-phy.yaml#"
0005 $schema: "http://devicetree.org/meta-schemas/core.yaml#"
0006 
0007 title: Qualcom IPQ40xx Dakota HS/SS USB PHY
0008 
0009 maintainers:
0010   - Robert Marko <robert.marko@sartura.hr>
0011 
0012 properties:
0013   compatible:
0014     enum:
0015       - qcom,usb-ss-ipq4019-phy
0016       - qcom,usb-hs-ipq4019-phy
0017 
0018   reg:
0019     maxItems: 1
0020 
0021   resets:
0022     maxItems: 2
0023 
0024   reset-names:
0025     items:
0026       - const: por_rst
0027       - const: srif_rst
0028 
0029   "#phy-cells":
0030     const: 0
0031 
0032 required:
0033   - compatible
0034   - reg
0035   - resets
0036   - reset-names
0037   - "#phy-cells"
0038 
0039 additionalProperties: false
0040 
0041 examples:
0042   - |
0043     #include <dt-bindings/clock/qcom,gcc-ipq4019.h>
0044 
0045     hsphy@a8000 {
0046       #phy-cells = <0>;
0047       compatible = "qcom,usb-hs-ipq4019-phy";
0048       reg = <0xa8000 0x40>;
0049       resets = <&gcc USB2_HSPHY_POR_ARES>,
0050                <&gcc USB2_HSPHY_S_ARES>;
0051       reset-names = "por_rst", "srif_rst";
0052     };