brintos

brintos / linux-shallow public Read only

0
0
Text · 1018 B · 0bf18d3 Raw
56 lines · yaml
1# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause2%YAML 1.23---4$id: http://devicetree.org/schemas/phy/qcom,sata-phy.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Qualcomm SATA PHY Controller8 9maintainers:10  - Bjorn Andersson <andersson@kernel.org>11  - Konrad Dybcio <konrad.dybcio@linaro.org>12 13description:14  The Qualcomm SATA PHY describes on-chip SATA Physical layer controllers.15 16properties:17  compatible:18    enum:19      - qcom,ipq806x-sata-phy20      - qcom,apq8064-sata-phy21 22  reg:23    maxItems: 124 25  clocks:26    maxItems: 127 28  clock-names:29    const: cfg30 31  '#phy-cells':32    const: 033 34required:35  - compatible36  - reg37  - clocks38  - clock-names39  - '#phy-cells'40 41additionalProperties: false42 43examples:44  - |45    #include <dt-bindings/clock/qcom,gcc-ipq806x.h>46    sata_phy: sata-phy@1b400000 {47        compatible = "qcom,ipq806x-sata-phy";48        reg = <0x1b400000 0x200>;49 50        clocks = <&gcc SATA_PHY_CFG_CLK>;51        clock-names = "cfg";52 53        #phy-cells = <0>;54    };55 56