kernel: update 3.14 to 3.14.18
[openwrt/openwrt.git] / target / linux / ipq806x / patches / 0011-devicetree-bindings-Document-qcom-kpss-acc.patch
1 From 3a4fe9a3a4aff8b1f1c3685bc9b6adbe739d7367 Mon Sep 17 00:00:00 2001
2 From: Stephen Boyd <sboyd@codeaurora.org>
3 Date: Thu, 31 Oct 2013 18:20:30 -0700
4 Subject: [PATCH 011/182] devicetree: bindings: Document qcom,kpss-acc
5
6 The kpss acc binding describes the clock, reset, and power domain
7 controller for a Krait CPU.
8
9 Cc: <devicetree@vger.kernel.org>
10 Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
11 Signed-off-by: Kumar Gala <galak@codeaurora.org>
12 ---
13 .../devicetree/bindings/arm/msm/qcom,kpss-acc.txt | 30 ++++++++++++++++++++
14 1 file changed, 30 insertions(+)
15 create mode 100644 Documentation/devicetree/bindings/arm/msm/qcom,kpss-acc.txt
16
17 --- /dev/null
18 +++ b/Documentation/devicetree/bindings/arm/msm/qcom,kpss-acc.txt
19 @@ -0,0 +1,30 @@
20 +Krait Processor Sub-system (KPSS) Application Clock Controller (ACC)
21 +
22 +The KPSS ACC provides clock, power domain, and reset control to a Krait CPU.
23 +There is one ACC register region per CPU within the KPSS remapped region as
24 +well as an alias register region that remaps accesses to the ACC associated
25 +with the CPU accessing the region.
26 +
27 +PROPERTIES
28 +
29 +- compatible:
30 + Usage: required
31 + Value type: <string>
32 + Definition: should be one of:
33 + "qcom,kpss-acc-v1"
34 + "qcom,kpss-acc-v2"
35 +
36 +- reg:
37 + Usage: required
38 + Value type: <prop-encoded-array>
39 + Definition: the first element specifies the base address and size of
40 + the register region. An optional second element specifies
41 + the base address and size of the alias register region.
42 +
43 +Example:
44 +
45 + clock-controller@2088000 {
46 + compatible = "qcom,kpss-acc-v2";
47 + reg = <0x02088000 0x1000>,
48 + <0x02008000 0x1000>;
49 + };