brintos

brintos / linux-shallow public Read only

0
0
Text · 1.6 KiB · 489d0fc Raw
65 lines · yaml
1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)2%YAML 1.23---4$id: http://devicetree.org/schemas/clock/qcom,ipq5018-gcc.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Qualcomm Global Clock & Reset Controller on IPQ50188 9maintainers:10  - Sricharan Ramabadhran <quic_srichara@quicinc.com>11 12description: |13  Qualcomm global clock control module provides the clocks, resets and power14  domains on IPQ501815 16  See also::17    include/dt-bindings/clock/qcom,ipq5018-gcc.h18    include/dt-bindings/reset/qcom,ipq5018-gcc.h19 20properties:21  compatible:22    const: qcom,gcc-ipq501823 24  clocks:25    items:26      - description: Board XO source27      - description: Sleep clock source28      - description: PCIE20 PHY0 pipe clock source29      - description: PCIE20 PHY1 pipe clock source30      - description: USB3 PHY pipe clock source31      - description: GEPHY RX clock source32      - description: GEPHY TX clock source33      - description: UNIPHY RX clock source34      - description: UNIPHY TX clk source35 36  '#power-domain-cells': false37 38required:39  - compatible40  - clocks41 42allOf:43  - $ref: qcom,gcc.yaml#44 45unevaluatedProperties: false46 47examples:48  - |49    clock-controller@1800000 {50      compatible = "qcom,gcc-ipq5018";51      reg = <0x01800000 0x80000>;52      clocks = <&xo_board_clk>,53               <&sleep_clk>,54               <&pcie20_phy0_pipe_clk>,55               <&pcie20_phy1_pipe_clk>,56               <&usb3_phy0_pipe_clk>,57               <&gephy_rx_clk>,58               <&gephy_tx_clk>,59               <&uniphy_rx_clk>,60               <&uniphy_tx_clk>;61      #clock-cells = <1>;62      #reset-cells = <1>;63    };64...65