1 // SPDX-License-Identifier: GPL-2.0
3 * (C) Copyright 2019, Xilinx, Inc,
9 #include <asm/arch/sys_proto.h>
12 #include <zynqmp_firmware.h>
13 #include <asm/cache.h>
15 static ulong versal_align_dma_buffer(ulong *buf, u32 len)
19 if ((ulong)buf != ALIGN((ulong)buf, ARCH_DMA_MINALIGN)) {
20 new_buf = (ulong *)ALIGN((ulong)buf, ARCH_DMA_MINALIGN);
21 memcpy(new_buf, buf, len);
28 static int versal_load(xilinx_desc *desc, const void *buf, size_t bsize,
29 bitstream_type bstype, int flags)
34 u32 ret_payload[PAYLOAD_ARG_CNT];
36 bin_buf = versal_align_dma_buffer((ulong *)buf, bsize);
38 debug("%s called!\n", __func__);
39 flush_dcache_range(bin_buf, bin_buf + bsize);
41 buf_lo = lower_32_bits(bin_buf);
42 buf_hi = upper_32_bits(bin_buf);
44 ret = xilinx_pm_request(VERSAL_PM_LOAD_PDI, VERSAL_PM_PDI_TYPE, buf_lo,
45 buf_hi, 0, ret_payload);
47 printf("PL FPGA LOAD failed with err: 0x%08x\n", ret);
52 struct xilinx_fpga_op versal_op = {