summaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
authorTaniya Das <tdas@codeaurora.org>2016-08-05 18:16:50 +0530
committerTaniya Das <tdas@codeaurora.org>2016-08-25 12:35:34 +0530
commitf7e6b7a1bcc8ae3bd4e54f5815d5882aaa57b4c6 (patch)
tree1c915cdfe53a29653c050037e2162ceebe3871de /Documentation
parente97b6a0e0217f7c072fdad6c50673cd7a64348e1 (diff)
clk: qcom: Add support for dummy reset controller
The consumers of the dummy clock provider would require support for dummy resets, which would make a dummy assert/deassert reset signals. The dummy reset controller registers for 0-100 reset signals. The consumers node would have the reset phandle and reset specific pairs and the reset signal names. test_node { .... resets = <&clock_gcc GCC_PHY_BCR>; reset-names = "phy_reset"; }; Change-Id: I242d2f36a6b4af53c658dbaa7a0f32e46cd3af33 Signed-off-by: Taniya Das <tdas@codeaurora.org>
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/devicetree/bindings/arm/msm/clock-controller-dummy.txt5
1 files changed, 5 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/arm/msm/clock-controller-dummy.txt b/Documentation/devicetree/bindings/arm/msm/clock-controller-dummy.txt
index fff8c9e20a1b..c6db837fa137 100644
--- a/Documentation/devicetree/bindings/arm/msm/clock-controller-dummy.txt
+++ b/Documentation/devicetree/bindings/arm/msm/clock-controller-dummy.txt
@@ -9,9 +9,14 @@ Required properties:
- #clock_cells: Must be <1>. This will allow the common clock device
tree framework to recognize _this_ device node as a
clock provider.
+Optional properties:
+- #reset-cells: Must be <1>. This will allow the common reset device
+ tree framework to recognize _this_ device node as a
+ reset controller provider.
Example:
clock_rpm: qcom,rpmcc {
compatible = "qcom,dummycc";
#clock-cells = <1>;
+ #reset-cells = <1>;
};