mirror of
https://xff.cz/git/u-boot/
synced 2025-09-30 23:11:32 +02:00
fpga: zynqpl: Flush dcache only for non-bitstream data
In case of aes decryption destination address range must be flushed before transferring decrypted data to destination. Signed-off-by: T Karthik Reddy <t.karthik.reddy@xilinx.com> Signed-off-by: Siva Durga Prasad Paladugu <siva.durga.paladugu@xilinx.com> Signed-off-by: Michal Simek <michal.simek@xilinx.com>
This commit is contained in:
committed by
Michal Simek
parent
c64afba2fb
commit
ca0c0e07ad
@@ -548,8 +548,9 @@ int zynq_decrypt_load(u32 srcaddr, u32 srclen, u32 dstaddr, u32 dstlen,
|
|||||||
* Flush destination address range only if image is not
|
* Flush destination address range only if image is not
|
||||||
* bitstream.
|
* bitstream.
|
||||||
*/
|
*/
|
||||||
flush_dcache_range((u32)dstaddr, (u32)dstaddr +
|
if (bstype == BIT_NONE && dstaddr != 0xFFFFFFFF)
|
||||||
roundup(dstlen << 2, ARCH_DMA_MINALIGN));
|
flush_dcache_range((u32)dstaddr, (u32)dstaddr +
|
||||||
|
roundup(dstlen << 2, ARCH_DMA_MINALIGN));
|
||||||
|
|
||||||
if (zynq_dma_transfer(srcaddr | 1, srclen, dstaddr | 1, dstlen))
|
if (zynq_dma_transfer(srcaddr | 1, srclen, dstaddr | 1, dstlen))
|
||||||
return FPGA_FAIL;
|
return FPGA_FAIL;
|
||||||
|
Reference in New Issue
Block a user