diff options
author | Jason Cooper <jason@lakedaemon.net> | 2012-11-21 20:02:46 +0000 |
---|---|---|
committer | Jason Cooper <jason@lakedaemon.net> | 2012-11-21 20:02:46 +0000 |
commit | 32d6448a08bdbe6d22fcff1dfffb8399003282df (patch) | |
tree | 6e41aeca1077b430f2fc82b43463c68bec6478c4 /Documentation/devicetree | |
parent | 86b7d3f7797908914735da83eb30df9d81fbd50a (diff) | |
parent | e60304f8cb7bb545e79fe62d9b9762460c254ec2 (diff) | |
download | op-kernel-dev-32d6448a08bdbe6d22fcff1dfffb8399003282df.zip op-kernel-dev-32d6448a08bdbe6d22fcff1dfffb8399003282df.tar.gz |
Merge tag 'marvell-hwiocc-for-3.8' of git://github.com/MISL-EBU-System-SW/mainline-public into mvebu/everything
Add hardware I/O coherency support for Armada 370/XP
The purpose of this patch set is to add hardware I/O Coherency support
for Armada 370 and Armada XP. Theses SoCs come with an unit called
coherency fabric. A beginning of the support for this unit have been
introduced with the SMP patch set. This series extend this support:
the coherency fabric unit allows to use the Armada XP and the Armada
370 as nearly coherent architectures.
The third patches enables this new feature and register our own set
of DMA ops, to benefit this hardware enhancement.
The first patches exports a dma operation function needed to register
our own set of dma ops.
The second patch introduces a new flag for the address decoding
configuration in order to be able to set the memory windows as
shared memory.
Diffstat (limited to 'Documentation/devicetree')
-rw-r--r-- | Documentation/devicetree/bindings/arm/coherency-fabric.txt | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/Documentation/devicetree/bindings/arm/coherency-fabric.txt b/Documentation/devicetree/bindings/arm/coherency-fabric.txt index 2bfbf67..17d8cd1 100644 --- a/Documentation/devicetree/bindings/arm/coherency-fabric.txt +++ b/Documentation/devicetree/bindings/arm/coherency-fabric.txt @@ -5,12 +5,17 @@ Available on Marvell SOCs: Armada 370 and Armada XP Required properties: - compatible: "marvell,coherency-fabric" -- reg: Should contain,coherency fabric registers location and length. + +- reg: Should contain coherency fabric registers location and + length. First pair for the coherency fabric registers, second pair + for the per-CPU fabric registers registers. Example: coherency-fabric@d0020200 { compatible = "marvell,coherency-fabric"; - reg = <0xd0020200 0xb0>; + reg = <0xd0020200 0xb0>, + <0xd0021810 0x1c>; + }; |