blob: 6b394869dbf6b69befc4cdf27763027bf12e5be1 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0
Siva Durga Prasad Paladugu6b245012016-01-13 16:25:37 +05302/*
3 * (C) Copyright 2015 - 2016, Xilinx, Inc,
4 * Michal Simek <michal.simek@xilinx.com>
5 * Siva Durga Prasad <siva.durga.paladugu@xilinx.com>
Siva Durga Prasad Paladugu6b245012016-01-13 16:25:37 +05306 */
7
8#include <console.h>
9#include <common.h>
Simon Glass401d1c42020-10-30 21:38:53 -060010#include <compiler.h>
Simon Glass1eb69ae2019-11-14 12:57:39 -070011#include <cpu_func.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060012#include <log.h>
Siva Durga Prasad Paladugu6b245012016-01-13 16:25:37 +053013#include <zynqmppl.h>
Ibai Erkiaga009ab7b2019-09-27 11:37:01 +010014#include <zynqmp_firmware.h>
Simon Glass90526e92020-05-10 11:39:56 -060015#include <asm/cache.h>
Simon Glasscd93d622020-05-10 11:40:13 -060016#include <linux/bitops.h>
Siva Durga Prasad Paladugu6b245012016-01-13 16:25:37 +053017#include <linux/sizes.h>
Siva Durga Prasad Paladugu7033ae22017-02-17 16:16:01 +053018#include <asm/arch/sys_proto.h>
Siva Durga Prasad Paladugu31bcb342018-03-15 00:17:24 +053019#include <memalign.h>
Siva Durga Prasad Paladugu6b245012016-01-13 16:25:37 +053020
21#define DUMMY_WORD 0xffffffff
22
23/* Xilinx binary format header */
24static const u32 bin_format[] = {
25 DUMMY_WORD, /* Dummy words */
26 DUMMY_WORD,
27 DUMMY_WORD,
28 DUMMY_WORD,
29 DUMMY_WORD,
30 DUMMY_WORD,
31 DUMMY_WORD,
32 DUMMY_WORD,
33 DUMMY_WORD,
34 DUMMY_WORD,
35 DUMMY_WORD,
36 DUMMY_WORD,
37 DUMMY_WORD,
38 DUMMY_WORD,
39 DUMMY_WORD,
40 DUMMY_WORD,
41 0x000000bb, /* Sync word */
42 0x11220044, /* Sync word */
43 DUMMY_WORD,
44 DUMMY_WORD,
45 0xaa995566, /* Sync word */
46};
47
48#define SWAP_NO 1
49#define SWAP_DONE 2
50
51/*
52 * Load the whole word from unaligned buffer
53 * Keep in your mind that it is byte loading on little-endian system
54 */
55static u32 load_word(const void *buf, u32 swap)
56{
57 u32 word = 0;
58 u8 *bitc = (u8 *)buf;
59 int p;
60
61 if (swap == SWAP_NO) {
62 for (p = 0; p < 4; p++) {
63 word <<= 8;
64 word |= bitc[p];
65 }
66 } else {
67 for (p = 3; p >= 0; p--) {
68 word <<= 8;
69 word |= bitc[p];
70 }
71 }
72
73 return word;
74}
75
76static u32 check_header(const void *buf)
77{
78 u32 i, pattern;
79 int swap = SWAP_NO;
80 u32 *test = (u32 *)buf;
81
82 debug("%s: Let's check bitstream header\n", __func__);
83
84 /* Checking that passing bin is not a bitstream */
85 for (i = 0; i < ARRAY_SIZE(bin_format); i++) {
86 pattern = load_word(&test[i], swap);
87
88 /*
89 * Bitstreams in binary format are swapped
90 * compare to regular bistream.
91 * Do not swap dummy word but if swap is done assume
92 * that parsing buffer is binary format
93 */
94 if ((__swab32(pattern) != DUMMY_WORD) &&
95 (__swab32(pattern) == bin_format[i])) {
96 swap = SWAP_DONE;
97 debug("%s: data swapped - let's swap\n", __func__);
98 }
99
100 debug("%s: %d/%px: pattern %x/%x bin_format\n", __func__, i,
101 &test[i], pattern, bin_format[i]);
102 }
103 debug("%s: Found bitstream header at %px %s swapinng\n", __func__,
104 buf, swap == SWAP_NO ? "without" : "with");
105
106 return swap;
107}
108
109static void *check_data(u8 *buf, size_t bsize, u32 *swap)
110{
111 u32 word, p = 0; /* possition */
112
113 /* Because buf doesn't need to be aligned let's read it by chars */
114 for (p = 0; p < bsize; p++) {
115 word = load_word(&buf[p], SWAP_NO);
116 debug("%s: word %x %x/%px\n", __func__, word, p, &buf[p]);
117
118 /* Find the first bitstream dummy word */
119 if (word == DUMMY_WORD) {
120 debug("%s: Found dummy word at position %x/%px\n",
121 __func__, p, &buf[p]);
122 *swap = check_header(&buf[p]);
123 if (*swap) {
124 /* FIXME add full bitstream checking here */
125 return &buf[p];
126 }
127 }
128 /* Loop can be huge - support CTRL + C */
129 if (ctrlc())
130 return NULL;
131 }
132 return NULL;
133}
134
135static ulong zynqmp_align_dma_buffer(u32 *buf, u32 len, u32 swap)
136{
137 u32 *new_buf;
138 u32 i;
139
140 if ((ulong)buf != ALIGN((ulong)buf, ARCH_DMA_MINALIGN)) {
141 new_buf = (u32 *)ALIGN((ulong)buf, ARCH_DMA_MINALIGN);
142
143 /*
144 * This might be dangerous but permits to flash if
145 * ARCH_DMA_MINALIGN is greater than header size
146 */
147 if (new_buf > (u32 *)buf) {
148 debug("%s: Aligned buffer is after buffer start\n",
149 __func__);
150 new_buf -= ARCH_DMA_MINALIGN;
151 }
152 printf("%s: Align buffer at %px to %px(swap %d)\n", __func__,
153 buf, new_buf, swap);
154
155 for (i = 0; i < (len/4); i++)
156 new_buf[i] = load_word(&buf[i], swap);
157
158 buf = new_buf;
Siva Durga Prasad Paladugufbf7fb02018-08-21 15:44:50 +0530159 } else if ((swap != SWAP_DONE) &&
Ibai Erkiaga57439812019-09-27 11:37:02 +0100160 (zynqmp_firmware_version() <= PMUFW_V1_0)) {
Siva Durga Prasad Paladugu6b245012016-01-13 16:25:37 +0530161 /* For bitstream which are aligned */
Michal Simek23decf02019-08-02 12:43:29 +0200162 new_buf = buf;
Siva Durga Prasad Paladugu6b245012016-01-13 16:25:37 +0530163
164 printf("%s: Bitstream is not swapped(%d) - swap it\n", __func__,
165 swap);
166
167 for (i = 0; i < (len/4); i++)
168 new_buf[i] = load_word(&buf[i], swap);
169 }
170
171 return (ulong)buf;
172}
173
174static int zynqmp_validate_bitstream(xilinx_desc *desc, const void *buf,
175 size_t bsize, u32 blocksize, u32 *swap)
176{
177 ulong *buf_start;
178 ulong diff;
179
180 buf_start = check_data((u8 *)buf, blocksize, swap);
181
182 if (!buf_start)
183 return FPGA_FAIL;
184
185 /* Check if data is postpone from start */
186 diff = (ulong)buf_start - (ulong)buf;
187 if (diff) {
188 printf("%s: Bitstream is not validated yet (diff %lx)\n",
189 __func__, diff);
190 return FPGA_FAIL;
191 }
192
193 if ((ulong)buf < SZ_1M) {
194 printf("%s: Bitstream has to be placed up to 1MB (%px)\n",
195 __func__, buf);
196 return FPGA_FAIL;
197 }
198
199 return 0;
200}
201
Siva Durga Prasad Paladugu6b245012016-01-13 16:25:37 +0530202static int zynqmp_load(xilinx_desc *desc, const void *buf, size_t bsize,
203 bitstream_type bstype)
204{
Siva Durga Prasad Paladugu31bcb342018-03-15 00:17:24 +0530205 ALLOC_CACHE_ALIGN_BUFFER(u32, bsizeptr, 1);
Siva Durga Prasad Paladugufbf7fb02018-08-21 15:44:50 +0530206 u32 swap = 0;
Siva Durga Prasad Paladugu7033ae22017-02-17 16:16:01 +0530207 ulong bin_buf;
Siva Durga Prasad Paladugu6b245012016-01-13 16:25:37 +0530208 int ret;
Siva Durga Prasad Paladugu7033ae22017-02-17 16:16:01 +0530209 u32 buf_lo, buf_hi;
210 u32 ret_payload[PAYLOAD_ARG_CNT];
Siva Durga Prasad Paladugufbf7fb02018-08-21 15:44:50 +0530211 bool xilfpga_old = false;
Siva Durga Prasad Paladugu6b245012016-01-13 16:25:37 +0530212
Ibai Erkiaga57439812019-09-27 11:37:02 +0100213 if (zynqmp_firmware_version() <= PMUFW_V1_0) {
Siva Durga Prasad Paladugufbf7fb02018-08-21 15:44:50 +0530214 puts("WARN: PMUFW v1.0 or less is detected\n");
215 puts("WARN: Not all bitstream formats are supported\n");
216 puts("WARN: Please upgrade PMUFW\n");
217 xilfpga_old = true;
218 if (zynqmp_validate_bitstream(desc, buf, bsize, bsize, &swap))
219 return FPGA_FAIL;
220 bsizeptr = (u32 *)&bsize;
221 flush_dcache_range((ulong)bsizeptr,
222 (ulong)bsizeptr + sizeof(size_t));
223 bstype |= BIT(ZYNQMP_FPGA_BIT_NS);
224 }
Siva Durga Prasad Paladugu6b245012016-01-13 16:25:37 +0530225
226 bin_buf = zynqmp_align_dma_buffer((u32 *)buf, bsize, swap);
227
228 debug("%s called!\n", __func__);
229 flush_dcache_range(bin_buf, bin_buf + bsize);
230
Siva Durga Prasad Paladugu7033ae22017-02-17 16:16:01 +0530231 buf_lo = (u32)bin_buf;
232 buf_hi = upper_32_bits(bin_buf);
Siva Durga Prasad Paladugufbf7fb02018-08-21 15:44:50 +0530233
234 if (xilfpga_old)
Michal Simekb7d45182020-09-09 13:25:40 +0200235 ret = xilinx_pm_request(PM_FPGA_LOAD, buf_lo,
Michal Simek40361952019-10-04 15:35:45 +0200236 buf_hi, (u32)(uintptr_t)bsizeptr,
237 bstype, ret_payload);
Siva Durga Prasad Paladugufbf7fb02018-08-21 15:44:50 +0530238 else
Michal Simekb7d45182020-09-09 13:25:40 +0200239 ret = xilinx_pm_request(PM_FPGA_LOAD, buf_lo,
Michal Simek40361952019-10-04 15:35:45 +0200240 buf_hi, (u32)bsize, 0, ret_payload);
Siva Durga Prasad Paladugufbf7fb02018-08-21 15:44:50 +0530241
Siva Durga Prasad Paladugu6b245012016-01-13 16:25:37 +0530242 if (ret)
T Karthik Reddy33d3f8e2020-05-14 07:49:36 -0600243 printf("PL FPGA LOAD failed with err: 0x%08x\n", ret);
Siva Durga Prasad Paladugu6b245012016-01-13 16:25:37 +0530244
245 return ret;
246}
247
Siva Durga Prasad Paladugua18d09e2018-05-31 15:10:23 +0530248#if defined(CONFIG_CMD_FPGA_LOAD_SECURE) && !defined(CONFIG_SPL_BUILD)
249static int zynqmp_loads(xilinx_desc *desc, const void *buf, size_t bsize,
250 struct fpga_secure_info *fpga_sec_info)
251{
252 int ret;
253 u32 buf_lo, buf_hi;
254 u32 ret_payload[PAYLOAD_ARG_CNT];
255 u8 flag = 0;
256
257 flush_dcache_range((ulong)buf, (ulong)buf +
258 ALIGN(bsize, CONFIG_SYS_CACHELINE_SIZE));
259
260 if (!fpga_sec_info->encflag)
261 flag |= BIT(ZYNQMP_FPGA_BIT_ENC_DEV_KEY);
262
263 if (fpga_sec_info->userkey_addr &&
264 fpga_sec_info->encflag == FPGA_ENC_USR_KEY) {
265 flush_dcache_range((ulong)fpga_sec_info->userkey_addr,
266 (ulong)fpga_sec_info->userkey_addr +
267 ALIGN(KEY_PTR_LEN,
268 CONFIG_SYS_CACHELINE_SIZE));
269 flag |= BIT(ZYNQMP_FPGA_BIT_ENC_USR_KEY);
270 }
271
272 if (!fpga_sec_info->authflag)
273 flag |= BIT(ZYNQMP_FPGA_BIT_AUTH_OCM);
274
275 if (fpga_sec_info->authflag == ZYNQMP_FPGA_AUTH_DDR)
276 flag |= BIT(ZYNQMP_FPGA_BIT_AUTH_DDR);
277
278 buf_lo = lower_32_bits((ulong)buf);
279 buf_hi = upper_32_bits((ulong)buf);
280
Michal Simekb7d45182020-09-09 13:25:40 +0200281 ret = xilinx_pm_request(PM_FPGA_LOAD, buf_lo,
Michal Simek40361952019-10-04 15:35:45 +0200282 buf_hi,
Siva Durga Prasad Paladugua18d09e2018-05-31 15:10:23 +0530283 (u32)(uintptr_t)fpga_sec_info->userkey_addr,
284 flag, ret_payload);
285 if (ret)
286 puts("PL FPGA LOAD fail\n");
287 else
288 puts("Bitstream successfully loaded\n");
289
290 return ret;
291}
292#endif
293
Nitin Jainb32e11a72018-02-16 17:29:54 +0530294static int zynqmp_pcap_info(xilinx_desc *desc)
295{
296 int ret;
297 u32 ret_payload[PAYLOAD_ARG_CNT];
298
Michal Simekb7d45182020-09-09 13:25:40 +0200299 ret = xilinx_pm_request(PM_FPGA_GET_STATUS, 0, 0, 0,
Michal Simek40361952019-10-04 15:35:45 +0200300 0, ret_payload);
Nitin Jainb32e11a72018-02-16 17:29:54 +0530301 if (!ret)
302 printf("PCAP status\t0x%x\n", ret_payload[1]);
303
304 return ret;
305}
306
Siva Durga Prasad Paladugu6b245012016-01-13 16:25:37 +0530307struct xilinx_fpga_op zynqmp_op = {
308 .load = zynqmp_load,
Michal Simeka798b8a2020-09-10 12:57:16 +0200309#if defined(CONFIG_CMD_FPGA_LOAD_SECURE) && !defined(CONFIG_SPL_BUILD)
Siva Durga Prasad Paladugua18d09e2018-05-31 15:10:23 +0530310 .loads = zynqmp_loads,
311#endif
Nitin Jainb32e11a72018-02-16 17:29:54 +0530312 .info = zynqmp_pcap_info,
Siva Durga Prasad Paladugu6b245012016-01-13 16:25:37 +0530313};