]> git.sur5r.net Git - u-boot/commit
crypto/fsl: Make CAAM transactions cacheable
authorSaksham Jain <saksham.jain@nxp.com>
Wed, 23 Mar 2016 10:54:42 +0000 (16:24 +0530)
committerYork Sun <york.sun@nxp.com>
Tue, 29 Mar 2016 15:46:22 +0000 (08:46 -0700)
commit8a6f83dcb8638e34c264e6ee8ee5699975de68a0
treed1a45ee6ae8360286e17e02b0a8b0e30408beb5f
parent69b6a796f7a7cf2a7946e07e32346bf5595829d5
crypto/fsl: Make CAAM transactions cacheable

This commit solves CAAM coherency issue on ls2080. When caches are
enabled and CAAM's DMA's AXI transcations are not made cacheable,
Core reads/writes data from/to caches and CAAM does from main memory.
This forces data flushes to synchronize various data structures. But
even if any data in proximity of these structures is read by core,
these structures again are fetched in caches.

To avoid this problem, either all the data that CAAM accesses can be
made cache line aligned or CAAM transcations can be made cacheable.

So, this commit makes CAAM transcations as write back with write and
read allocate.

Signed-off-by: Saksham Jain <saksham.jain@nxp.com>
Reviewed-by: York Sun <york.sun@nxp.com>
drivers/crypto/fsl/jr.c
drivers/crypto/fsl/jr.h