powerpc/85xx: use the BRx registers to enable indirect mode on the P1022DS
authorTimur Tabi <timur@freescale.com>
Thu, 5 Jul 2012 15:08:28 +0000 (10:08 -0500)
committerKumar Gala <galak@kernel.crashing.org>
Tue, 10 Jul 2012 12:07:21 +0000 (07:07 -0500)
commit6bd825f02966be8ba544047cab313d6032c23819
tree8e294c6f66a1ac5ed02b41dab5e04fbed017a6e1
parentaeccf8983e002557aa7728c0678c1dd6d9027193
powerpc/85xx: use the BRx registers to enable indirect mode on the P1022DS

In order to enable the DIU video controller on the P1022DS, the FPGA needs
to be switched to "indirect mode", where the localbus is disabled and
the FPGA is accessed via writes to localbus chip select signals CS0 and CS1.

To obtain the address of CS0 and CS1, the platform driver uses an "indirect
pixis mode" device tree node.  This node assumes that the localbus 'ranges'
property is sorted in chip-select order.  That is, reg value 0 maps to
CS0, reg value 1 maps to CS1, etc.  This is how the 'ranges' property is
supposed to be arranged.

Unfortunately, the 'ranges' property is often mis-arranged, and not just on
the P1022DS.  Linux normally does not care, since it does not program the
localbus.  But the indirect-mode code on the P1022DS does care.

The "proper" fix is to have U-Boot fix the 'ranges' property, but this would
be too cumbersome.  The names and 'reg' properties of all the localbus
devices would also need to be updated, and determining which localbus device
maps to which chip select is board-specific.

Instead, we determine the CS0/CS1 base addresses the same way that U-boot
does -- by reading the BRx registers directly and mapping them to physical
addresses.  This code is simpler and more reliable, and it does not require
a U-boot or device tree change.

Since the indirect pixis device tree node is no longer needed, the node is
deleted from the DTS.

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