blob: 8ab19e0c74e65fd9c6be3fb0c029a5b18aceb9fe [file] [log] [blame]
Siva Durga Prasad Paladugu26e054c2019-08-05 15:54:59 +05301// SPDX-License-Identifier: GPL-2.0
2/*
3 * (C) Copyright 2019, Xilinx, Inc,
4 * Siva Durga Prasad Paladugu <siva.durga.paladugu@xilinx.com>
5 */
6
7#include <common.h>
Simon Glass1eb69ae2019-11-14 12:57:39 -07008#include <cpu_func.h>
Siva Durga Prasad Paladugu26e054c2019-08-05 15:54:59 +05309#include <asm/arch/sys_proto.h>
10#include <memalign.h>
11#include <versalpl.h>
Michal Simek866225f2019-10-04 15:45:29 +020012#include <zynqmp_firmware.h>
Simon Glass90526e92020-05-10 11:39:56 -060013#include <asm/cache.h>
Siva Durga Prasad Paladugu26e054c2019-08-05 15:54:59 +053014
15static ulong versal_align_dma_buffer(ulong *buf, u32 len)
16{
17 ulong *new_buf;
18
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);
22 buf = new_buf;
23 }
24
25 return (ulong)buf;
26}
27
28static int versal_load(xilinx_desc *desc, const void *buf, size_t bsize,
29 bitstream_type bstype)
30{
31 ulong bin_buf;
32 int ret;
33 u32 buf_lo, buf_hi;
34 u32 ret_payload[5];
35
36 bin_buf = versal_align_dma_buffer((ulong *)buf, bsize);
37
38 debug("%s called!\n", __func__);
39 flush_dcache_range(bin_buf, bin_buf + bsize);
40
41 buf_lo = lower_32_bits(bin_buf);
42 buf_hi = upper_32_bits(bin_buf);
43
Michal Simek65962702019-10-04 15:52:43 +020044 ret = xilinx_pm_request(VERSAL_PM_LOAD_PDI, VERSAL_PM_PDI_TYPE, buf_lo,
Siva Durga Prasad Paladugu26e054c2019-08-05 15:54:59 +053045 buf_hi, 0, ret_payload);
46 if (ret)
47 puts("PL FPGA LOAD fail\n");
48
49 return ret;
50}
51
52struct xilinx_fpga_op versal_op = {
53 .load = versal_load,
54};