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

dt-bindings: clock: qcom: Add QCOM Q6SSTOP clock controller bindings

Add devicetree binding for the Q6SSTOP clock controller found in QCS404.

Signed-off-by: Govind Singh <govinds@codeaurora.org>
Link: https://lkml.kernel.org/r/20191011132928.9388-2-govinds@codeaurora.org
Reviewed-by: Rob Herring <robh@kernel.org>
Signed-off-by: Stephen Boyd <sboyd@kernel.org>

authored by

Govind Singh and committed by
Stephen Boyd
8e7b71f8 54ecb8f7

+43
+43
Documentation/devicetree/bindings/clock/qcom,q6sstopcc.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,q6sstopcc.yaml# 5 + $schema: http://devicetree.org/meta-schemas/core.yaml# 6 + 7 + title: Q6SSTOP clock Controller 8 + 9 + maintainers: 10 + - Govind Singh <govinds@codeaurora.org> 11 + 12 + properties: 13 + compatible: 14 + const: "qcom,qcs404-q6sstopcc" 15 + 16 + reg: 17 + items: 18 + - description: Q6SSTOP clocks register region 19 + - description: Q6SSTOP_TCSR register region 20 + 21 + clocks: 22 + items: 23 + - description: ahb clock for the q6sstopCC 24 + 25 + '#clock-cells': 26 + const: 1 27 + 28 + required: 29 + - compatible 30 + - reg 31 + - clocks 32 + - '#clock-cells' 33 + 34 + additionalProperties: false 35 + 36 + examples: 37 + - | 38 + q6sstopcc: clock-controller@7500000 { 39 + compatible = "qcom,qcs404-q6sstopcc"; 40 + reg = <0x07500000 0x4e000>, <0x07550000 0x10000>; 41 + clocks = <&gcc 141>; 42 + #clock-cells = <1>; 43 + };