Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

dt-bindings: clock: add schema for qcom,gcc-mdm9615

Add schema for the Global Clock Controller (GCC) present on the Qualcomm
MDM9615 platform.

Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Link: https://lore.kernel.org/r/20240529-qcom-gdscs-v2-3-69c63d0ae1e7@linaro.org
Signed-off-by: Bjorn Andersson <andersson@kernel.org>

authored by

Dmitry Baryshkov and committed by
Bjorn Andersson
e81e9a84 b0ef3434

+50
+50
Documentation/devicetree/bindings/clock/qcom,gcc-mdm9615.yaml
··· 1 + # SPDX-License-Identifier: GPL-2.0-only 2 + %YAML 1.2 3 + --- 4 + $id: http://devicetree.org/schemas/clock/qcom,gcc-mdm9615.yaml# 5 + $schema: http://devicetree.org/meta-schemas/core.yaml# 6 + 7 + title: Qualcomm Global Clock & Reset Controller 8 + 9 + maintainers: 10 + - Stephen Boyd <sboyd@kernel.org> 11 + - Taniya Das <quic_tdas@quicinc.com> 12 + 13 + description: | 14 + Qualcomm global clock control module provides the clocks, resets and power 15 + domains. 16 + 17 + See also:: 18 + include/dt-bindings/clock/qcom,gcc-mdm9615.h 19 + 20 + allOf: 21 + - $ref: qcom,gcc.yaml# 22 + 23 + properties: 24 + compatible: 25 + enum: 26 + - qcom,gcc-mdm9615 27 + 28 + clocks: 29 + items: 30 + - description: CXO clock 31 + - description: PLL4 from LLC 32 + 33 + '#power-domain-cells': false 34 + 35 + required: 36 + - compatible 37 + 38 + unevaluatedProperties: false 39 + 40 + examples: 41 + - | 42 + clock-controller@900000 { 43 + compatible = "qcom,gcc-mdm9615"; 44 + reg = <0x900000 0x4000>; 45 + #clock-cells = <1>; 46 + #reset-cells = <1>; 47 + clocks = <&cxo_board>, 48 + <&lcc_pll4>; 49 + }; 50 + ...