diff options
author | Gregory CLEMENT <gregory.clement@free-electrons.com> | 2014-07-09 09:40:14 -0400 |
---|---|---|
committer | Jason Cooper <jason@lakedaemon.net> | 2014-07-16 08:34:22 -0400 |
commit | d7f3ec2b69f692d215deb991d109a3341b0d8da9 (patch) | |
tree | cb6cef33f5133fdd55028cf2d054e248a10d61a9 /Documentation/devicetree | |
parent | 9495898ffd2075d0fd42b573cb40c23eaea7b18e (diff) |
ARM: mvebu: add CA9 MPcore SoC Controller node
The CA9 MPcore SoC Control block is a set of registers that allows to
configure certain internal aspects of the core blocks of the SoC
(Cortex-A9, L2 cache controller, etc.). In most cases, the default
values are fine so they aren't many reasons to touch those registers,
but there is one exception: to support cpuidle on Armada 38x, we need
to modify the value of the CA9 MPcore Reset Control register.
Therefore, this commit adds a new Device Tree binding for this
hardware block, and uses this new binding for the Armada 38x Device
Tree file.
Signed-off-by: Gregory CLEMENT <gregory.clement@free-electrons.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Cc: devicetree@vger.kernel.org
Link: https://lkml.kernel.org/r/1404913221-17343-11-git-send-email-thomas.petazzoni@free-electrons.com
Signed-off-by: Jason Cooper <jason@lakedaemon.net>
Diffstat (limited to 'Documentation/devicetree')
-rw-r--r-- | Documentation/devicetree/bindings/arm/armada-380-mpcore-soc-ctrl.txt | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/arm/armada-380-mpcore-soc-ctrl.txt b/Documentation/devicetree/bindings/arm/armada-380-mpcore-soc-ctrl.txt new file mode 100644 index 000000000000..8781073029e9 --- /dev/null +++ b/Documentation/devicetree/bindings/arm/armada-380-mpcore-soc-ctrl.txt | |||
@@ -0,0 +1,14 @@ | |||
1 | Marvell Armada 38x CA9 MPcore SoC Controller | ||
2 | ============================================ | ||
3 | |||
4 | Required properties: | ||
5 | |||
6 | - compatible: Should be "marvell,armada-380-mpcore-soc-ctrl". | ||
7 | |||
8 | - reg: should be the register base and length as documented in the | ||
9 | datasheet for the CA9 MPcore SoC Control registers | ||
10 | |||
11 | mpcore-soc-ctrl@20d20 { | ||
12 | compatible = "marvell,armada-380-mpcore-soc-ctrl"; | ||
13 | reg = <0x20d20 0x6c>; | ||
14 | }; | ||