summaryrefslogtreecommitdiff
path: root/drivers/crypto/caam/error.h
diff options
context:
space:
mode:
authorBharat Bhushan <Bharat.Bhushan@freescale.com>2012-07-11 03:06:10 (GMT)
committerHerbert Xu <herbert@gondor.apana.org.au>2012-07-11 03:06:10 (GMT)
commit1af8ea862c9a9a6d5dc100850036cc7a641bb242 (patch)
tree6c17ecaad399d4a5ce1a12f17020a72e17259dc1 /drivers/crypto/caam/error.h
parent26c8aaebc188b539a0a9077350009a059464097d (diff)
downloadlinux-1af8ea862c9a9a6d5dc100850036cc7a641bb242.tar.xz
crypto: caam - Using alloc_coherent for caam job rings
The caam job rings (input/output job ring) are allocated using dma_map_single(). These job rings can be visualized as the ring buffers in which the jobs are en-queued/de-queued. The s/w enqueues the jobs in input job ring which h/w dequeues and after processing it copies the jobs in output job ring. Software then de-queues the job from output ring. Using dma_map/unmap_single() is not preferred way to allocate memory for this type of requirements because this adds un-necessary complexity. Example, if bounce buffer (SWIOTLB) will get used then to make any change visible in this memory to other processing unit requires dmap_unmap_single() or dma_sync_single_for_cpu/device(). The dma_unmap_single() can not be used as this will free the bounce buffer, this will require changing the job rings on running system and I seriously doubt that it will be not possible or very complex to implement. Also using dma_sync_single_for_cpu/device() will also add unnecessary complexity. The simple and preferred way is using dma_alloc_coherent() for these type of memory requirements. This resolves the Linux boot crash issue when "swiotlb=force" is set in bootargs on systems which have memory more than 4G. Signed-off-by: Bharat Bhushan <bharat.bhushan@freescale.com> Acked-by: Kim Phillips <kim.phillips@freescale.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'drivers/crypto/caam/error.h')
0 files changed, 0 insertions, 0 deletions