]> git.ipfire.org Git - thirdparty/u-boot.git/blob - cmd/fpga.c
cmd: fpga: Cleanup error handling in connection to FPGA_NONE
[thirdparty/u-boot.git] / cmd / fpga.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3 * (C) Copyright 2000, 2001
4 * Rich Ireland, Enterasys Networks, rireland@enterasys.com.
5 */
6
7 /*
8 * FPGA support
9 */
10 #include <common.h>
11 #include <command.h>
12 #include <fpga.h>
13 #include <fs.h>
14 #include <malloc.h>
15
16 /* Local defines */
17 enum {
18 FPGA_NONE = -1,
19 FPGA_INFO,
20 FPGA_LOAD,
21 FPGA_LOADB,
22 FPGA_DUMP,
23 FPGA_LOADMK,
24 FPGA_LOADP,
25 FPGA_LOADBP,
26 FPGA_LOADFS,
27 FPGA_LOADS,
28 };
29
30 /*
31 * Map op to supported operations. We don't use a table since we
32 * would just have to relocate it from flash anyway.
33 */
34 static int fpga_get_op(char *opstr)
35 {
36 int op = FPGA_NONE;
37
38 if (!strcmp("info", opstr))
39 op = FPGA_INFO;
40 else if (!strcmp("loadb", opstr))
41 op = FPGA_LOADB;
42 else if (!strcmp("load", opstr))
43 op = FPGA_LOAD;
44 #if defined(CONFIG_CMD_FPGA_LOADP)
45 else if (!strcmp("loadp", opstr))
46 op = FPGA_LOADP;
47 #endif
48 #if defined(CONFIG_CMD_FPGA_LOADBP)
49 else if (!strcmp("loadbp", opstr))
50 op = FPGA_LOADBP;
51 #endif
52 #if defined(CONFIG_CMD_FPGA_LOADFS)
53 else if (!strcmp("loadfs", opstr))
54 op = FPGA_LOADFS;
55 #endif
56 #if defined(CONFIG_CMD_FPGA_LOADMK)
57 else if (!strcmp("loadmk", opstr))
58 op = FPGA_LOADMK;
59 #endif
60 else if (!strcmp("dump", opstr))
61 op = FPGA_DUMP;
62 #if defined(CONFIG_CMD_FPGA_LOAD_SECURE)
63 else if (!strcmp("loads", opstr))
64 op = FPGA_LOADS;
65 #endif
66
67 return op;
68 }
69
70 /* ------------------------------------------------------------------------- */
71 /* command form:
72 * fpga <op> <device number> <data addr> <datasize>
73 * where op is 'load', 'dump', or 'info'
74 * If there is no device number field, the fpga environment variable is used.
75 * If there is no data addr field, the fpgadata environment variable is used.
76 * The info command requires no data address field.
77 */
78 int do_fpga(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[])
79 {
80 int op, dev = FPGA_INVALID_DEVICE;
81 size_t data_size = 0;
82 void *fpga_data = NULL;
83 char *devstr = env_get("fpga");
84 char *datastr = env_get("fpgadata");
85 int rc = FPGA_FAIL;
86 int wrong_parms = 0;
87 #if defined(CONFIG_FIT)
88 const char *fit_uname = NULL;
89 ulong fit_addr;
90 #endif
91 #if defined(CONFIG_CMD_FPGA_LOADFS)
92 fpga_fs_info fpga_fsinfo;
93 fpga_fsinfo.fstype = FS_TYPE_ANY;
94 #endif
95 #if defined(CONFIG_CMD_FPGA_LOAD_SECURE)
96 struct fpga_secure_info fpga_sec_info;
97
98 memset(&fpga_sec_info, 0, sizeof(fpga_sec_info));
99 #endif
100
101 if (devstr)
102 dev = (int) simple_strtoul(devstr, NULL, 16);
103 if (datastr)
104 fpga_data = (void *)simple_strtoul(datastr, NULL, 16);
105
106 if (argc > 9 || argc < 2) {
107 debug("%s: Too many or too few args (%d)\n", __func__, argc);
108 return CMD_RET_USAGE;
109 }
110
111 op = fpga_get_op(argv[1]);
112
113 switch (op) {
114 case FPGA_NONE:
115 printf("Unknown fpga operation \"%s\"\n", argv[1]);
116 return CMD_RET_USAGE;
117 #if defined(CONFIG_CMD_FPGA_LOADFS)
118 case FPGA_LOADFS:
119 if (argc < 9)
120 return CMD_RET_USAGE;
121 fpga_fsinfo.blocksize = (unsigned int)
122 simple_strtoul(argv[5], NULL, 16);
123 fpga_fsinfo.interface = argv[6];
124 fpga_fsinfo.dev_part = argv[7];
125 fpga_fsinfo.filename = argv[8];
126 argc = 5;
127 break;
128 #endif
129 #if defined(CONFIG_CMD_FPGA_LOAD_SECURE)
130 case FPGA_LOADS:
131 if (argc < 7)
132 return CMD_RET_USAGE;
133 if (argc == 8)
134 fpga_sec_info.userkey_addr = (u8 *)(uintptr_t)
135 simple_strtoull(argv[7],
136 NULL, 16);
137 fpga_sec_info.encflag = (u8)simple_strtoul(argv[6], NULL, 16);
138 fpga_sec_info.authflag = (u8)simple_strtoul(argv[5], NULL, 16);
139 argc = 5;
140 break;
141 #endif
142 default:
143 break;
144 }
145
146 switch (argc) {
147 case 5: /* fpga <op> <dev> <data> <datasize> */
148 data_size = simple_strtoul(argv[4], NULL, 16);
149
150 case 4: /* fpga <op> <dev> <data> */
151 #if defined(CONFIG_FIT)
152 if (fit_parse_subimage(argv[3], (ulong)fpga_data,
153 &fit_addr, &fit_uname)) {
154 fpga_data = (void *)fit_addr;
155 debug("* fpga: subimage '%s' from FIT image ",
156 fit_uname);
157 debug("at 0x%08lx\n", fit_addr);
158 } else
159 #endif
160 {
161 fpga_data = (void *)simple_strtoul(argv[3], NULL, 16);
162 debug("* fpga: cmdline image address = 0x%08lx\n",
163 (ulong)fpga_data);
164 }
165 debug("%s: fpga_data = 0x%lx\n", __func__, (ulong)fpga_data);
166
167 case 3: /* fpga <op> <dev | data addr> */
168 dev = (int)simple_strtoul(argv[2], NULL, 16);
169 debug("%s: device = %d\n", __func__, dev);
170 }
171
172 if (dev == FPGA_INVALID_DEVICE) {
173 puts("FPGA device not specified\n");
174 return CMD_RET_USAGE;
175 }
176
177 switch (op) {
178 case FPGA_INFO:
179 break;
180 #if defined(CONFIG_CMD_FPGA_LOADFS)
181 case FPGA_LOADFS:
182 /* Blocksize can be zero */
183 if (!fpga_fsinfo.interface || !fpga_fsinfo.dev_part ||
184 !fpga_fsinfo.filename)
185 wrong_parms = 1;
186 break;
187 #endif
188 #if defined(CONFIG_CMD_FPGA_LOAD_SECURE)
189 case FPGA_LOADS:
190 if (fpga_sec_info.authflag >= FPGA_NO_ENC_OR_NO_AUTH &&
191 fpga_sec_info.encflag >= FPGA_NO_ENC_OR_NO_AUTH) {
192 puts("ERR: use <fpga load> for NonSecure bitstream\n");
193 wrong_parms = 1;
194 }
195
196 if (fpga_sec_info.encflag == FPGA_ENC_USR_KEY &&
197 !fpga_sec_info.userkey_addr) {
198 wrong_parms = 1;
199 puts("ERR:User key not provided\n");
200 }
201 break;
202 #endif
203 case FPGA_LOAD:
204 case FPGA_LOADP:
205 case FPGA_LOADB:
206 case FPGA_LOADBP:
207 case FPGA_DUMP:
208 if (!fpga_data || !data_size)
209 wrong_parms = 1;
210 break;
211 #if defined(CONFIG_CMD_FPGA_LOADMK)
212 case FPGA_LOADMK:
213 if (!fpga_data)
214 wrong_parms = 1;
215 break;
216 #endif
217 }
218
219 if (wrong_parms) {
220 puts("Wrong parameters for FPGA request\n");
221 return CMD_RET_USAGE;
222 }
223
224 switch (op) {
225 case FPGA_INFO:
226 rc = fpga_info(dev);
227 break;
228
229 case FPGA_LOAD:
230 rc = fpga_load(dev, fpga_data, data_size, BIT_FULL);
231 break;
232
233 #if defined(CONFIG_CMD_FPGA_LOADP)
234 case FPGA_LOADP:
235 rc = fpga_load(dev, fpga_data, data_size, BIT_PARTIAL);
236 break;
237 #endif
238
239 case FPGA_LOADB:
240 rc = fpga_loadbitstream(dev, fpga_data, data_size, BIT_FULL);
241 break;
242
243 #if defined(CONFIG_CMD_FPGA_LOADBP)
244 case FPGA_LOADBP:
245 rc = fpga_loadbitstream(dev, fpga_data, data_size, BIT_PARTIAL);
246 break;
247 #endif
248
249 #if defined(CONFIG_CMD_FPGA_LOADFS)
250 case FPGA_LOADFS:
251 rc = fpga_fsload(dev, fpga_data, data_size, &fpga_fsinfo);
252 break;
253 #endif
254
255 #if defined(CONFIG_CMD_FPGA_LOAD_SECURE)
256 case FPGA_LOADS:
257 rc = fpga_loads(dev, fpga_data, data_size, &fpga_sec_info);
258 break;
259 #endif
260
261 #if defined(CONFIG_CMD_FPGA_LOADMK)
262 case FPGA_LOADMK:
263 switch (genimg_get_format(fpga_data)) {
264 #if defined(CONFIG_IMAGE_FORMAT_LEGACY)
265 case IMAGE_FORMAT_LEGACY:
266 {
267 image_header_t *hdr =
268 (image_header_t *)fpga_data;
269 ulong data;
270 uint8_t comp;
271
272 comp = image_get_comp(hdr);
273 if (comp == IH_COMP_GZIP) {
274 #if defined(CONFIG_GZIP)
275 ulong image_buf = image_get_data(hdr);
276 data = image_get_load(hdr);
277 ulong image_size = ~0UL;
278
279 if (gunzip((void *)data, ~0UL,
280 (void *)image_buf,
281 &image_size) != 0) {
282 puts("GUNZIP: error\n");
283 return 1;
284 }
285 data_size = image_size;
286 #else
287 puts("Gunzip image is not supported\n");
288 return 1;
289 #endif
290 } else {
291 data = (ulong)image_get_data(hdr);
292 data_size = image_get_data_size(hdr);
293 }
294 rc = fpga_load(dev, (void *)data, data_size,
295 BIT_FULL);
296 }
297 break;
298 #endif
299 #if defined(CONFIG_FIT)
300 case IMAGE_FORMAT_FIT:
301 {
302 const void *fit_hdr = (const void *)fpga_data;
303 int noffset;
304 const void *fit_data;
305
306 if (fit_uname == NULL) {
307 puts("No FIT subimage unit name\n");
308 return 1;
309 }
310
311 if (!fit_check_format(fit_hdr)) {
312 puts("Bad FIT image format\n");
313 return 1;
314 }
315
316 /* get fpga component image node offset */
317 noffset = fit_image_get_node(fit_hdr,
318 fit_uname);
319 if (noffset < 0) {
320 printf("Can't find '%s' FIT subimage\n",
321 fit_uname);
322 return 1;
323 }
324
325 /* verify integrity */
326 if (!fit_image_verify(fit_hdr, noffset)) {
327 puts ("Bad Data Hash\n");
328 return 1;
329 }
330
331 /* get fpga subimage data address and length */
332 if (fit_image_get_data(fit_hdr, noffset,
333 &fit_data, &data_size)) {
334 puts("Fpga subimage data not found\n");
335 return 1;
336 }
337
338 rc = fpga_load(dev, fit_data, data_size,
339 BIT_FULL);
340 }
341 break;
342 #endif
343 default:
344 puts("** Unknown image type\n");
345 rc = FPGA_FAIL;
346 break;
347 }
348 break;
349 #endif
350
351 case FPGA_DUMP:
352 rc = fpga_dump(dev, fpga_data, data_size);
353 break;
354
355 default:
356 printf("Unknown operation\n");
357 return CMD_RET_USAGE;
358 }
359 return rc;
360 }
361
362 #if defined(CONFIG_CMD_FPGA_LOADFS) || defined(CONFIG_CMD_FPGA_LOAD_SECURE)
363 U_BOOT_CMD(fpga, 9, 1, do_fpga,
364 #else
365 U_BOOT_CMD(fpga, 6, 1, do_fpga,
366 #endif
367 "loadable FPGA image support",
368 "[operation type] [device number] [image address] [image size]\n"
369 "fpga operations:\n"
370 " dump\t[dev] [address] [size]\tLoad device to memory buffer\n"
371 " info\t[dev]\t\t\tlist known device information\n"
372 " load\t[dev] [address] [size]\tLoad device from memory buffer\n"
373 #if defined(CONFIG_CMD_FPGA_LOADP)
374 " loadp\t[dev] [address] [size]\t"
375 "Load device from memory buffer with partial bitstream\n"
376 #endif
377 " loadb\t[dev] [address] [size]\t"
378 "Load device from bitstream buffer (Xilinx only)\n"
379 #if defined(CONFIG_CMD_FPGA_LOADBP)
380 " loadbp\t[dev] [address] [size]\t"
381 "Load device from bitstream buffer with partial bitstream"
382 "(Xilinx only)\n"
383 #endif
384 #if defined(CONFIG_CMD_FPGA_LOADFS)
385 "Load device from filesystem (FAT by default) (Xilinx only)\n"
386 " loadfs [dev] [address] [image size] [blocksize] <interface>\n"
387 " [<dev[:part]>] <filename>\n"
388 #endif
389 #if defined(CONFIG_CMD_FPGA_LOADMK)
390 " loadmk [dev] [address]\tLoad device generated with mkimage"
391 #if defined(CONFIG_FIT)
392 "\n"
393 "\tFor loadmk operating on FIT format uImage address must include\n"
394 "\tsubimage unit name in the form of addr:<subimg_uname>"
395 #endif
396 #endif
397 #if defined(CONFIG_CMD_FPGA_LOAD_SECURE)
398 "Load encrypted bitstream (Xilinx only)\n"
399 " loads [dev] [address] [size] [auth-OCM-0/DDR-1/noauth-2]\n"
400 " [enc-devkey(0)/userkey(1)/nenc(2) [Userkey address]\n"
401 "Loads the secure bistreams(authenticated/encrypted/both\n"
402 "authenticated and encrypted) of [size] from [address].\n"
403 "The auth-OCM/DDR flag specifies to perform authentication\n"
404 "in OCM or in DDR. 0 for OCM, 1 for DDR, 2 for no authentication.\n"
405 "The enc flag specifies which key to be used for decryption\n"
406 "0-device key, 1-user key, 2-no encryption.\n"
407 "The optional Userkey address specifies from which address key\n"
408 "has to be used for decryption if user key is selected.\n"
409 "NOTE: the sceure bitstream has to be created using xilinx\n"
410 "bootgen tool only.\n"
411 #endif
412 );