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: mfd: qcom,tcsr: Convert to dtschema

Convert the Qualcomm Top Control and Status Register to DT Schema.

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Reviewed-by: Rob Herring <robh@kernel.org>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Link: https://lore.kernel.org/r/20220607133443.182468-1-krzysztof.kozlowski@linaro.org

authored by

Krzysztof Kozlowski and committed by
Lee Jones
7677ed11 66ee379d

+49 -24
-24
Documentation/devicetree/bindings/mfd/qcom,tcsr.txt
··· 1 - QCOM Top Control and Status Register 2 - 3 - Qualcomm devices have a set of registers that provide various control and status 4 - functions for their peripherals. This node is intended to allow access to these 5 - registers via syscon. 6 - 7 - Required properties: 8 - - compatible: Should contain: 9 - "qcom,tcsr-ipq6018", "syscon", "simple-mfd" for IPQ6018 10 - "qcom,tcsr-ipq8064", "syscon" for IPQ8064 11 - "qcom,tcsr-apq8064", "syscon" for APQ8064 12 - "qcom,tcsr-msm8660", "syscon" for MSM8660 13 - "qcom,tcsr-msm8953", "syscon" for MSM8953 14 - "qcom,tcsr-msm8960", "syscon" for MSM8960 15 - "qcom,tcsr-msm8974", "syscon" for MSM8974 16 - "qcom,tcsr-apq8084", "syscon" for APQ8084 17 - "qcom,tcsr-msm8916", "syscon" for MSM8916 18 - - reg: Address range for TCSR registers 19 - 20 - Example: 21 - tcsr: syscon@1a400000 { 22 - compatible = "qcom,tcsr-msm8960", "syscon"; 23 - reg = <0x1a400000 0x100>; 24 - };
+49
Documentation/devicetree/bindings/mfd/qcom,tcsr.yaml
··· 1 + # SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause 2 + %YAML 1.2 3 + --- 4 + $id: http://devicetree.org/schemas/mfd/qcom,tcsr.yaml# 5 + $schema: http://devicetree.org/meta-schemas/core.yaml# 6 + 7 + title: Qualcomm Top Control and Status Register 8 + 9 + maintainers: 10 + - Bjorn Andersson <bjorn.andersson@linaro.org> 11 + 12 + description: 13 + Qualcomm devices have a set of registers that provide various control and 14 + status functions for their peripherals. 15 + 16 + properties: 17 + compatible: 18 + oneOf: 19 + - items: 20 + - enum: 21 + - qcom,tcsr-apq8064 22 + - qcom,tcsr-apq8084 23 + - qcom,tcsr-ipq8064 24 + - qcom,tcsr-msm8660 25 + - qcom,tcsr-msm8916 26 + - qcom,tcsr-msm8953 27 + - qcom,tcsr-msm8960 28 + - qcom,tcsr-msm8974 29 + - const: syscon 30 + - items: 31 + - const: qcom,tcsr-ipq6018 32 + - const: syscon 33 + - const: simple-mfd 34 + 35 + reg: 36 + maxItems: 1 37 + 38 + required: 39 + - compatible 40 + - reg 41 + 42 + additionalProperties: false 43 + 44 + examples: 45 + - | 46 + syscon@1a400000 { 47 + compatible = "qcom,tcsr-msm8960", "syscon"; 48 + reg = <0x1a400000 0x100>; 49 + };