Skip to content

Commit dcad688

Browse files
tpetazzonilunn
authored andcommitted
ARM: mvebu: don't set the PL310 in I/O coherency mode when I/O coherency is disabled
Since commit f2c3c67 (merge commit that adds commit "ARM: mvebu: completely disable hardware I/O coherency"), we disable I/O coherency on Armada EBU platforms. However, we continue to initialize the coherency fabric, because this coherency fabric is needed on Armada XP for inter-CPU coherency. Unfortunately, due to this, we also continued to execute the coherency fabric initialization code for Armada 375/38x, which switched the PL310 into I/O coherent mode. This has the effect of disabling the outer cache sync operation: this is needed when I/O coherency is enabled to work around a PCIe/L2 deadlock. But obviously, when I/O coherency is disabled, having the outer cache sync operation is crucial. Therefore, this commit fixes the armada_375_380_coherency_init() so that the PL310 is switched to I/O coherent mode only if I/O coherency is enabled. Without this fix, all devices using DMA are broken on Armada 375/38x. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Acked-by: Gregory CLEMENT <gregory.clement@free-electrons.com> Tested-by: Gregory CLEMENT <gregory.clement@free-electrons.com> Signed-off-by: Andrew Lunn <andrew@lunn.ch> Cc: <stable@vger.kernel.org> # v3.8+
1 parent 38bdf45 commit dcad688

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

arch/arm/mach-mvebu/coherency.c

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,13 @@ static void __init armada_375_380_coherency_init(struct device_node *np)
189189
coherency_cpu_base = of_iomap(np, 0);
190190
arch_ioremap_caller = armada_pcie_wa_ioremap_caller;
191191

192+
/*
193+
* We should switch the PL310 to I/O coherency mode only if
194+
* I/O coherency is actually enabled.
195+
*/
196+
if (!coherency_available())
197+
return;
198+
192199
/*
193200
* Add the PL310 property "arm,io-coherent". This makes sure the
194201
* outer sync operation is not used, which allows to

0 commit comments

Comments
 (0)