]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
powerpc/85xx: add pixis indirect mode device tree node
authorTimur Tabi <timur@freescale.com>
Fri, 18 Nov 2011 17:50:00 +0000 (11:50 -0600)
committerKumar Gala <galak@kernel.crashing.org>
Thu, 24 Nov 2011 08:01:40 +0000 (02:01 -0600)
The Freescale P1022 has a unique pin muxing "feature" where the DIU video
controller's video signals are muxed with 24 of the local bus address signals.
When the DIU is enabled, the bulk of the local bus is disabled, preventing
access to memory-mapped devices like NOR flash and the pixis FPGA.

In this situation, the pixis supports "indirect mode", which allows access
to the pixis itself by reading/writing addresses on specific local bus
chip selects.  CS0 is used to select which pixis register to access, and
CS1 is used to read/write the value.

To support this, we introduce another board-control child node of the
localbus node that contains a 'reg' property for CS0 and CS1.  This will
produce the correct physical addresses for CS0 and CS1.

Signed-off-by: Timur Tabi <timur@freescale.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
arch/powerpc/boot/dts/p1022ds.dts

index 24a73e978f82d6cc3dec884186c021d9898dab9a..3e85d8c3850340d2e421e29c4d1197d1a517cd44 100644 (file)
                          0x2 0x0 0xf 0xffa00000 0x00040000
                          0x3 0x0 0xf 0xffdf0000 0x00008000>;
 
+               /*
+                * This node is used to access the pixis via "indirect" mode,
+                * which is done by writing the pixis register index to chip
+                * select 0 and the value to/from chip select 1.  Indirect
+                * mode is the only way to access the pixis when DIU video
+                * is enabled.  Note that this assumes that the first column
+                * of the 'ranges' property above is the chip select number.
+                */
+               board-control@0,0 {
+                       compatible = "fsl,p1022ds-indirect-pixis";
+                       reg = <0x0 0x0 1        /* CS0 */
+                              0x1 0x0 1>;      /* CS1 */
+               };
+
                nor@0,0 {
                        #address-cells = <1>;
                        #size-cells = <1>;