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: qcom,sdm845-lpasscc: convert to dtschema

Convert Qualcomm SDM845 LPASS clock controller bindings to DT schema.

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Reviewed-by: Stephen Boyd <sboyd@kernel.org>
Signed-off-by: Bjorn Andersson <andersson@kernel.org>
Link: https://lore.kernel.org/r/20221104182108.126515-1-krzysztof.kozlowski@linaro.org

authored by

Krzysztof Kozlowski and committed by
Bjorn Andersson
83bece0a aa7f4455

+47 -26
-26
Documentation/devicetree/bindings/clock/qcom,lpasscc.txt
··· 1 - Qualcomm LPASS Clock Controller Binding 2 - ----------------------------------------------- 3 - 4 - Required properties : 5 - - compatible : shall contain "qcom,sdm845-lpasscc" 6 - - #clock-cells : from common clock binding, shall contain 1. 7 - - reg : shall contain base register address and size, 8 - in the order 9 - Index-0 maps to LPASS_CC register region 10 - Index-1 maps to LPASS_QDSP6SS register region 11 - 12 - Optional properties : 13 - - reg-names : register names of LPASS domain 14 - "cc", "qdsp6ss". 15 - 16 - Example: 17 - 18 - The below node has to be defined in the cases where the LPASS peripheral loader 19 - would bring the subsystem out of reset. 20 - 21 - lpasscc: clock-controller@17014000 { 22 - compatible = "qcom,sdm845-lpasscc"; 23 - reg = <0x17014000 0x1f004>, <0x17300000 0x200>; 24 - reg-names = "cc", "qdsp6ss"; 25 - #clock-cells = <1>; 26 - };
+47
Documentation/devicetree/bindings/clock/qcom,sdm845-lpasscc.yaml
··· 1 + # SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause 2 + %YAML 1.2 3 + --- 4 + $id: http://devicetree.org/schemas/clock/qcom,sdm845-lpasscc.yaml# 5 + $schema: http://devicetree.org/meta-schemas/core.yaml# 6 + 7 + title: Qualcomm SDM845 LPASS Clock Controller 8 + 9 + maintainers: 10 + - Bjorn Andersson <andersson@kernel.org> 11 + 12 + description: | 13 + Qualcomm SDM845 LPASS (Low Power Audio SubSystem) Clock Controller. 14 + 15 + See also:: include/dt-bindings/clock/qcom,lpass-sdm845.h 16 + 17 + properties: 18 + compatible: 19 + const: qcom,sdm845-lpasscc 20 + 21 + '#clock-cells': 22 + const: 1 23 + 24 + reg: 25 + maxItems: 2 26 + 27 + reg-names: 28 + items: 29 + - const: cc 30 + - const: qdsp6ss 31 + 32 + required: 33 + - compatible 34 + - '#clock-cells' 35 + - reg 36 + - reg-names 37 + 38 + additionalProperties: false 39 + 40 + examples: 41 + - | 42 + clock-controller@17014000 { 43 + compatible = "qcom,sdm845-lpasscc"; 44 + reg = <0x17014000 0x1f004>, <0x17300000 0x200>; 45 + reg-names = "cc", "qdsp6ss"; 46 + #clock-cells = <1>; 47 + };