2019-08-05 10:24:59 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
/*
|
|
|
|
* (C) Copyright 2019, Xilinx, Inc,
|
|
|
|
* Siva Durga Prasad Paladugu <siva.durga.paladugu@xilinx.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
2019-11-14 19:57:39 +00:00
|
|
|
#include <cpu_func.h>
|
2020-05-10 17:40:05 +00:00
|
|
|
#include <log.h>
|
2019-08-05 10:24:59 +00:00
|
|
|
#include <asm/arch/sys_proto.h>
|
|
|
|
#include <memalign.h>
|
|
|
|
#include <versalpl.h>
|
2019-10-04 13:45:29 +00:00
|
|
|
#include <zynqmp_firmware.h>
|
2020-05-10 17:39:56 +00:00
|
|
|
#include <asm/cache.h>
|
2019-08-05 10:24:59 +00:00
|
|
|
|
|
|
|
static ulong versal_align_dma_buffer(ulong *buf, u32 len)
|
|
|
|
{
|
|
|
|
ulong *new_buf;
|
|
|
|
|
|
|
|
if ((ulong)buf != ALIGN((ulong)buf, ARCH_DMA_MINALIGN)) {
|
|
|
|
new_buf = (ulong *)ALIGN((ulong)buf, ARCH_DMA_MINALIGN);
|
|
|
|
memcpy(new_buf, buf, len);
|
|
|
|
buf = new_buf;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (ulong)buf;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int versal_load(xilinx_desc *desc, const void *buf, size_t bsize,
|
|
|
|
bitstream_type bstype)
|
|
|
|
{
|
|
|
|
ulong bin_buf;
|
|
|
|
int ret;
|
|
|
|
u32 buf_lo, buf_hi;
|
2020-08-04 22:17:26 +00:00
|
|
|
u32 ret_payload[PAYLOAD_ARG_CNT];
|
2019-08-05 10:24:59 +00:00
|
|
|
|
|
|
|
bin_buf = versal_align_dma_buffer((ulong *)buf, bsize);
|
|
|
|
|
|
|
|
debug("%s called!\n", __func__);
|
|
|
|
flush_dcache_range(bin_buf, bin_buf + bsize);
|
|
|
|
|
|
|
|
buf_lo = lower_32_bits(bin_buf);
|
|
|
|
buf_hi = upper_32_bits(bin_buf);
|
|
|
|
|
2019-10-04 13:52:43 +00:00
|
|
|
ret = xilinx_pm_request(VERSAL_PM_LOAD_PDI, VERSAL_PM_PDI_TYPE, buf_lo,
|
2019-08-05 10:24:59 +00:00
|
|
|
buf_hi, 0, ret_payload);
|
|
|
|
if (ret)
|
2020-05-14 13:49:36 +00:00
|
|
|
printf("PL FPGA LOAD failed with err: 0x%08x\n", ret);
|
2019-08-05 10:24:59 +00:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct xilinx_fpga_op versal_op = {
|
|
|
|
.load = versal_load,
|
|
|
|
};
|