aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm
diff options
context:
space:
mode:
authorMathieu Olivari <mathieu@codeaurora.org>2015-02-20 21:19:35 -0500
committerWim Van Sebroeck <wim@iguana.be>2015-04-22 09:28:11 -0400
commit4ba1c98b552c58b1a29bd943aef51b1788465b2d (patch)
tree87f51099aa4f8609068cb49fdaddba24b8c717d3 /arch/arm
parent0dfd582e026af8a37917164aaba7227fa812e5c2 (diff)
ARM: qcom: add description of KPSS WDT for IPQ8064
Add the watchdog related entries to the Krait Processor Sub-system (KPSS) timer IPQ8064 devicetree section. Also, add a fixed-clock description of SLEEP_CLK, which will do for now. Signed-off-by: Josh Cartwright <joshc@codeaurora.org> Signed-off-by: Mathieu Olivari <mathieu@codeaurora.org> Reviewed-by: Stephen Boyd <sboyd@codeaurora.org> Acked-by: Guenter Roeck <linux@roeck-us.net> Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
Diffstat (limited to 'arch/arm')
-rw-r--r--arch/arm/boot/dts/qcom-ipq8064.dtsi14
1 files changed, 13 insertions, 1 deletions
diff --git a/arch/arm/boot/dts/qcom-ipq8064.dtsi b/arch/arm/boot/dts/qcom-ipq8064.dtsi
index cb225dafe97c..d01f618df5f7 100644
--- a/arch/arm/boot/dts/qcom-ipq8064.dtsi
+++ b/arch/arm/boot/dts/qcom-ipq8064.dtsi
@@ -60,6 +60,14 @@
60 }; 60 };
61 }; 61 };
62 62
63 clocks {
64 sleep_clk: sleep_clk {
65 compatible = "fixed-clock";
66 clock-frequency = <32768>;
67 #clock-cells = <0>;
68 };
69 };
70
63 soc: soc { 71 soc: soc {
64 #address-cells = <1>; 72 #address-cells = <1>;
65 #size-cells = <1>; 73 #size-cells = <1>;
@@ -89,10 +97,14 @@
89 compatible = "qcom,kpss-timer", "qcom,msm-timer"; 97 compatible = "qcom,kpss-timer", "qcom,msm-timer";
90 interrupts = <1 1 0x301>, 98 interrupts = <1 1 0x301>,
91 <1 2 0x301>, 99 <1 2 0x301>,
92 <1 3 0x301>; 100 <1 3 0x301>,
101 <1 4 0x301>,
102 <1 5 0x301>;
93 reg = <0x0200a000 0x100>; 103 reg = <0x0200a000 0x100>;
94 clock-frequency = <25000000>, 104 clock-frequency = <25000000>,
95 <32768>; 105 <32768>;
106 clocks = <&sleep_clk>;
107 clock-names = "sleep";
96 cpu-offset = <0x80000>; 108 cpu-offset = <0x80000>;
97 }; 109 };
98 110