Based on kernel version 6.19. Page generated on 2026-02-12 08:37 EST.
| 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 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 | # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) %YAML 1.2 --- $id: http://devicetree.org/schemas/clock/qcom,ipq9574-nsscc.yaml# $schema: http://devicetree.org/meta-schemas/core.yaml# title: Qualcomm Networking Sub System Clock & Reset Controller on IPQ9574 and IPQ5424 maintainers: - Bjorn Andersson <andersson@kernel.org> - Anusha Rao <quic_anusha@quicinc.com> description: | Qualcomm networking sub system clock control module provides the clocks, resets on IPQ9574 and IPQ5424 See also: include/dt-bindings/clock/qcom,ipq5424-nsscc.h include/dt-bindings/clock/qcom,ipq9574-nsscc.h include/dt-bindings/reset/qcom,ipq5424-nsscc.h include/dt-bindings/reset/qcom,ipq9574-nsscc.h properties: compatible: enum: - qcom,ipq5424-nsscc - qcom,ipq9574-nsscc clocks: items: - description: Board XO source - description: CMN_PLL NSS (Bias PLL cc) clock source. This clock rate can vary for different IPQ SoCs. For example, it is 1200 MHz on the IPQ9574 and 300 MHz on the IPQ5424. - description: CMN_PLL PPE (Bias PLL ubi nc) clock source. The clock rate can vary for different IPQ SoCs. For example, it is 353 MHz on the IPQ9574 and 375 MHz on the IPQ5424. - description: GCC GPLL0 OUT AUX clock source - description: Uniphy0 NSS Rx clock source - description: Uniphy0 NSS Tx clock source - description: Uniphy1 NSS Rx clock source - description: Uniphy1 NSS Tx clock source - description: Uniphy2 NSS Rx clock source - description: Uniphy2 NSS Tx clock source - description: GCC NSSCC clock source '#interconnect-cells': const: 1 clock-names: items: - const: xo - enum: - nss_1200 - nss - enum: - ppe_353 - ppe - const: gpll0_out - const: uniphy0_rx - const: uniphy0_tx - const: uniphy1_rx - const: uniphy1_tx - const: uniphy2_rx - const: uniphy2_tx - const: bus required: - compatible - clocks - clock-names allOf: - $ref: qcom,gcc.yaml# - if: properties: compatible: const: qcom,ipq9574-nsscc then: properties: clock-names: items: - const: xo - const: nss_1200 - const: ppe_353 - const: gpll0_out - const: uniphy0_rx - const: uniphy0_tx - const: uniphy1_rx - const: uniphy1_tx - const: uniphy2_rx - const: uniphy2_tx - const: bus else: properties: clock-names: items: - const: xo - const: nss - const: ppe - const: gpll0_out - const: uniphy0_rx - const: uniphy0_tx - const: uniphy1_rx - const: uniphy1_tx - const: uniphy2_rx - const: uniphy2_tx - const: bus unevaluatedProperties: false examples: - | #include <dt-bindings/clock/qcom,ipq9574-gcc.h> #include <dt-bindings/clock/qcom,ipq-cmn-pll.h> clock-controller@39b00000 { compatible = "qcom,ipq9574-nsscc"; reg = <0x39b00000 0x80000>; clocks = <&xo_board_clk>, <&cmn_pll NSS_1200MHZ_CLK>, <&cmn_pll PPE_353MHZ_CLK>, <&gcc GPLL0_OUT_AUX>, <&uniphy 0>, <&uniphy 1>, <&uniphy 2>, <&uniphy 3>, <&uniphy 4>, <&uniphy 5>, <&gcc GCC_NSSCC_CLK>; clock-names = "xo", "nss_1200", "ppe_353", "gpll0_out", "uniphy0_rx", "uniphy0_tx", "uniphy1_rx", "uniphy1_tx", "uniphy2_rx", "uniphy2_tx", "bus"; #clock-cells = <1>; #reset-cells = <1>; #interconnect-cells = <1>; }; ... |