powerpc/fsl: 85xx: document cache sram bindings
authorVivek Mahajan <vivek.mahajan@freescale.com>
Tue, 8 Dec 2009 07:31:15 +0000 (13:01 +0530)
committerKumar Gala <galak@kernel.crashing.org>
Tue, 15 Mar 2011 19:09:06 +0000 (14:09 -0500)
Adds binding documentation for cache sram for the PQ3 and some QorIQ
based platforms.

Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Documentation/devicetree/bindings/powerpc/fsl/cache_sram.txt [new file with mode: 0644]

diff --git a/Documentation/devicetree/bindings/powerpc/fsl/cache_sram.txt b/Documentation/devicetree/bindings/powerpc/fsl/cache_sram.txt
new file mode 100644 (file)
index 0000000..781955f
--- /dev/null
@@ -0,0 +1,20 @@
+* Freescale PQ3 and QorIQ based Cache SRAM
+
+Freescale's mpc85xx and some QorIQ platforms provide an
+option of configuring a part of (or full) cache memory
+as SRAM. This cache SRAM representation in the device
+tree should be done as under:-
+
+Required properties:
+
+- compatible : should be "fsl,p2020-cache-sram"
+- fsl,cache-sram-ctlr-handle : points to the L2 controller
+- reg : offset and length of the cache-sram.
+
+Example:
+
+cache-sram@fff00000 {
+       fsl,cache-sram-ctlr-handle = <&L2>;
+       reg = <0 0xfff00000 0 0x10000>;
+       compatible = "fsl,p2020-cache-sram";
+};