diff options
author | Gregory CLEMENT <gregory.clement@free-electrons.com> | 2012-08-02 04:16:29 -0400 |
---|---|---|
committer | Gregory CLEMENT <gregory.clement@free-electrons.com> | 2012-11-21 10:49:06 -0500 |
commit | 009f13159bfdccd6e06fe3b62a39fee6dce26c39 (patch) | |
tree | 681d68bde140a819f18af537a51131c850dc8edb /Documentation/devicetree | |
parent | 1611f872513735ac7105535689c0dd668fbf1c04 (diff) |
arm: mvebu: Add support for coherency fabric in mach-mvebu
The Armada 370 and Armada XP SOCs have a coherency fabric unit which
is responsible for ensuring hardware coherency between all CPUs and
between CPUs and I/O masters. This patch provides the basic support
needed for SMP.
Signed-off-by: Yehuda Yitschak <yehuday@marvell.com>
Signed-off-by: Gregory CLEMENT <gregory.clement@free-electrons.com>
Reviewed-by: Will Deacon <will.deacon@arm.com>
Diffstat (limited to 'Documentation/devicetree')
-rw-r--r-- | Documentation/devicetree/bindings/arm/coherency-fabric.txt | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/arm/coherency-fabric.txt b/Documentation/devicetree/bindings/arm/coherency-fabric.txt new file mode 100644 index 000000000000..2bfbf67dd77e --- /dev/null +++ b/Documentation/devicetree/bindings/arm/coherency-fabric.txt | |||
@@ -0,0 +1,16 @@ | |||
1 | Coherency fabric | ||
2 | ---------------- | ||
3 | Available on Marvell SOCs: Armada 370 and Armada XP | ||
4 | |||
5 | Required properties: | ||
6 | |||
7 | - compatible: "marvell,coherency-fabric" | ||
8 | - reg: Should contain,coherency fabric registers location and length. | ||
9 | |||
10 | Example: | ||
11 | |||
12 | coherency-fabric@d0020200 { | ||
13 | compatible = "marvell,coherency-fabric"; | ||
14 | reg = <0xd0020200 0xb0>; | ||
15 | }; | ||
16 | |||