[PATCH v2] ARM: realview: basic device tree implementation
Catalin Marinas
catalin.marinas at arm.com
Thu May 22 07:45:03 PDT 2014
On Thu, May 22, 2014 at 09:31:37AM +0100, Arnd Bergmann wrote:
> commit 42c4dafe803dcad82980fd8b0831a89032156f93
> Author: Catalin Marinas <catalin.marinas at arm.com>
> Date: Thu Jul 1 13:22:48 2010 +0100
>
> ARM: 6202/1: Do not ARM_DMA_MEM_BUFFERABLE on RealView boards with L210/L220
>
> RealView boards with certain revisions of the L210/L220 cache controller
> may have issues (hardware deadlock) with the mandatory barriers (DSB
> followed by an L2 cache sync) when ARM_DMA_MEM_BUFFERABLE is enabled.
> The patch disables ARM_DMA_MEM_BUFFERABLE for these boards.
>
> Tested-by: Linus Walleij <linus.walleij at stericsson.com>
> Signed-off-by: Catalin Marinas <catalin.marinas at arm.com>
> Signed-off-by: Russell King <rmk+kernel at arm.linux.org.uk>
Looking through the L220 errata document, I think this relates to 425331
which says that a cache sync can deadlock the system if the write buffer
is not empty. By making the DMA memory Strongly Ordered, we avoid the
L220 write buffer. In addition to the above commit, we also had
2503a5ecd86c (ARM: 6201/1: RealView: Do not use outer_sync() on
ARM11MPCore boards with L220).
The above only solves the issue for coherent DMA allocations. Streaming
DMA requires additional changes to cache-l2x0.c but they are all weird
and depend on how the L2x0 is wired (for example, using SWP to access
the L2x0 registers works on one RealView board but not on another).
Anyway, I don't think we have any streaming DMA used on these RealView
boards.
If we only use the DMA coherent buffers for CLCD on these boards, we
don't really need the outer_sync() either so we could go back to
bufferable DMA memory (strangely enough, this L2 cache workaround looks
similar to Marvell's PCI+PL310 problem where we want to avoid
outer_sync()).
--
Catalin
More information about the linux-arm-kernel
mailing list