]>
Commit | Line | Data |
---|---|---|
1 | //----------------------------------------------------------------------------- | |
2 | // piwi, 2017, 2018 | |
3 | // | |
4 | // This code is licensed to you under the terms of the GNU GPL, version 2 or, | |
5 | // at your option, any later version. See the LICENSE.txt file for the text of | |
6 | // the license. | |
7 | //----------------------------------------------------------------------------- | |
8 | // Compression tool for FPGA config files. Compress several *.bit files at | |
9 | // compile time. Decompression is done at run time (see fpgaloader.c). | |
10 | // This uses the zlib library tuned to this specific case. The small file sizes | |
11 | // allow to use "insane" parameters for optimum compression ratio. | |
12 | //----------------------------------------------------------------------------- | |
13 | ||
14 | #include <stdio.h> | |
15 | #include <stdlib.h> | |
16 | #include <libgen.h> | |
17 | #include <string.h> | |
18 | #include <stdint.h> | |
19 | #include <stdbool.h> | |
20 | #include "fpga.h" | |
21 | #include "zlib.h" | |
22 | ||
23 | #define MAX(a,b) ((a)>(b)?(a):(b)) | |
24 | ||
25 | // zlib configuration | |
26 | #define COMPRESS_LEVEL 9 // use best possible compression | |
27 | #define COMPRESS_WINDOW_BITS 15 // default = max = 15 for a window of 2^15 = 32KBytes | |
28 | #define COMPRESS_MEM_LEVEL 9 // determines the amount of memory allocated during compression. Default = 8. | |
29 | /* COMPRESS_STRATEGY can be | |
30 | Z_DEFAULT_STRATEGY (the default), | |
31 | Z_FILTERED (more huffmann, less string matching), | |
32 | Z_HUFFMAN_ONLY (huffman only, no string matching) | |
33 | Z_RLE (distances limited to one) | |
34 | Z_FIXED (prevents the use of dynamic Huffman codes) | |
35 | */ | |
36 | ||
37 | #define COMPRESS_STRATEGY Z_DEFAULT_STRATEGY | |
38 | // zlib tuning parameters: | |
39 | #define COMPRESS_GOOD_LENGTH 258 | |
40 | #define COMPRESS_MAX_LAZY 258 | |
41 | #define COMPRESS_MAX_NICE_LENGTH 258 | |
42 | #define COMPRESS_MAX_CHAIN 8192 | |
43 | ||
44 | #define HARDNESTED_TABLE_SIZE (sizeof(uint32_t) * ((1L<<19)+1)) | |
45 | ||
46 | static void usage(void) | |
47 | { | |
48 | fprintf(stdout, "Usage: fpga_compress <infile1> <infile2> ... <infile_n> <outfile>\n"); | |
49 | fprintf(stdout, " Combine n FPGA bitstream files and compress them into one.\n\n"); | |
50 | fprintf(stdout, " fpga_compress -v <infile1> <infile2> ... <infile_n> <outfile>\n"); | |
51 | fprintf(stdout, " Extract Version Information from FPGA bitstream files and write it to <outfile>\n\n"); | |
52 | fprintf(stdout, " fpga_compress -d <infile> <outfile>\n"); | |
53 | fprintf(stdout, " Decompress <infile>. Write result to <outfile>\n\n"); | |
54 | fprintf(stdout, " fpga_compress -t <infile> <outfile>\n"); | |
55 | fprintf(stdout, " Compress hardnested table <infile>. Write result to <outfile>\n\n"); | |
56 | } | |
57 | ||
58 | ||
59 | static voidpf fpga_deflate_malloc(voidpf opaque, uInt items, uInt size) | |
60 | { | |
61 | return malloc(items*size); | |
62 | } | |
63 | ||
64 | ||
65 | static void fpga_deflate_free(voidpf opaque, voidpf address) | |
66 | { | |
67 | free(address); | |
68 | } | |
69 | ||
70 | ||
71 | static bool all_feof(FILE *infile[], uint8_t num_infiles) | |
72 | { | |
73 | for (uint16_t i = 0; i < num_infiles; i++) { | |
74 | if (!feof(infile[i])) { | |
75 | return false; | |
76 | } | |
77 | } | |
78 | ||
79 | return true; | |
80 | } | |
81 | ||
82 | ||
83 | int zlib_compress(FILE *infile[], uint8_t num_infiles, FILE *outfile, bool hardnested_mode) | |
84 | { | |
85 | uint8_t *fpga_config; | |
86 | uint32_t i; | |
87 | int32_t ret; | |
88 | uint8_t c; | |
89 | z_stream compressed_fpga_stream; | |
90 | ||
91 | if (hardnested_mode) { | |
92 | fpga_config = malloc(num_infiles * HARDNESTED_TABLE_SIZE); | |
93 | } else { | |
94 | fpga_config = malloc(num_infiles * FPGA_CONFIG_SIZE); | |
95 | } | |
96 | // read the input files. Interleave them into fpga_config[] | |
97 | i = 0; | |
98 | do { | |
99 | ||
100 | if (i >= num_infiles * (hardnested_mode?HARDNESTED_TABLE_SIZE:FPGA_CONFIG_SIZE)) { | |
101 | if (hardnested_mode) { | |
102 | fprintf(stderr, "Input file too big (> %lu bytes). This is probably not a hardnested bitflip state table.\n", HARDNESTED_TABLE_SIZE); | |
103 | } else { | |
104 | fprintf(stderr, "Input files too big (total > %lu bytes). These are probably not PM3 FPGA config files.\n", num_infiles*FPGA_CONFIG_SIZE); | |
105 | } | |
106 | for(uint16_t j = 0; j < num_infiles; j++) { | |
107 | fclose(infile[j]); | |
108 | } | |
109 | free(fpga_config); | |
110 | return(EXIT_FAILURE); | |
111 | } | |
112 | ||
113 | for(uint16_t j = 0; j < num_infiles; j++) { | |
114 | for(uint16_t k = 0; k < FPGA_INTERLEAVE_SIZE; k++) { | |
115 | c = (uint8_t)fgetc(infile[j]); | |
116 | if (!feof(infile[j])) { | |
117 | fpga_config[i++] = c; | |
118 | } else if (num_infiles > 1) { | |
119 | fpga_config[i++] = '\0'; | |
120 | } | |
121 | } | |
122 | } | |
123 | ||
124 | } while (!all_feof(infile, num_infiles)); | |
125 | ||
126 | // initialize zlib structures | |
127 | compressed_fpga_stream.next_in = fpga_config; | |
128 | compressed_fpga_stream.avail_in = i; | |
129 | compressed_fpga_stream.zalloc = fpga_deflate_malloc; | |
130 | compressed_fpga_stream.zfree = fpga_deflate_free; | |
131 | compressed_fpga_stream.opaque = Z_NULL; | |
132 | ret = deflateInit2(&compressed_fpga_stream, | |
133 | COMPRESS_LEVEL, | |
134 | Z_DEFLATED, | |
135 | COMPRESS_WINDOW_BITS, | |
136 | COMPRESS_MEM_LEVEL, | |
137 | COMPRESS_STRATEGY); | |
138 | ||
139 | // estimate the size of the compressed output | |
140 | uint32_t outsize_max = deflateBound(&compressed_fpga_stream, compressed_fpga_stream.avail_in); | |
141 | uint8_t *outbuf = malloc(outsize_max); | |
142 | compressed_fpga_stream.next_out = outbuf; | |
143 | compressed_fpga_stream.avail_out = outsize_max; | |
144 | ||
145 | if (ret == Z_OK) { | |
146 | ret = deflateTune(&compressed_fpga_stream, | |
147 | COMPRESS_GOOD_LENGTH, | |
148 | COMPRESS_MAX_LAZY, | |
149 | COMPRESS_MAX_NICE_LENGTH, | |
150 | COMPRESS_MAX_CHAIN); | |
151 | } | |
152 | ||
153 | if (ret == Z_OK) { | |
154 | ret = deflate(&compressed_fpga_stream, Z_FINISH); | |
155 | } | |
156 | ||
157 | fprintf(stdout, "compressed %u input bytes to %lu output bytes\n", i, compressed_fpga_stream.total_out); | |
158 | ||
159 | if (ret != Z_STREAM_END) { | |
160 | fprintf(stderr, "Error in deflate(): %i %s\n", ret, compressed_fpga_stream.msg); | |
161 | free(outbuf); | |
162 | deflateEnd(&compressed_fpga_stream); | |
163 | for(uint16_t j = 0; j < num_infiles; j++) { | |
164 | fclose(infile[j]); | |
165 | } | |
166 | fclose(outfile); | |
167 | free(infile); | |
168 | free(fpga_config); | |
169 | return(EXIT_FAILURE); | |
170 | } | |
171 | ||
172 | for (i = 0; i < compressed_fpga_stream.total_out; i++) { | |
173 | fputc(outbuf[i], outfile); | |
174 | } | |
175 | ||
176 | free(outbuf); | |
177 | deflateEnd(&compressed_fpga_stream); | |
178 | for(uint16_t j = 0; j < num_infiles; j++) { | |
179 | fclose(infile[j]); | |
180 | } | |
181 | fclose(outfile); | |
182 | free(infile); | |
183 | free(fpga_config); | |
184 | ||
185 | return(EXIT_SUCCESS); | |
186 | ||
187 | } | |
188 | ||
189 | ||
190 | int zlib_decompress(FILE *infile, FILE *outfile) | |
191 | { | |
192 | #define DECOMPRESS_BUF_SIZE 1024 | |
193 | uint8_t outbuf[DECOMPRESS_BUF_SIZE]; | |
194 | uint8_t inbuf[DECOMPRESS_BUF_SIZE]; | |
195 | int32_t ret; | |
196 | ||
197 | z_stream compressed_fpga_stream; | |
198 | ||
199 | // initialize zlib structures | |
200 | compressed_fpga_stream.next_in = inbuf; | |
201 | compressed_fpga_stream.avail_in = 0; | |
202 | compressed_fpga_stream.next_out = outbuf; | |
203 | compressed_fpga_stream.avail_out = DECOMPRESS_BUF_SIZE; | |
204 | compressed_fpga_stream.zalloc = fpga_deflate_malloc; | |
205 | compressed_fpga_stream.zfree = fpga_deflate_free; | |
206 | compressed_fpga_stream.opaque = Z_NULL; | |
207 | ||
208 | ret = inflateInit2(&compressed_fpga_stream, 0); | |
209 | ||
210 | do { | |
211 | if (compressed_fpga_stream.avail_in == 0) { | |
212 | compressed_fpga_stream.next_in = inbuf; | |
213 | uint16_t i = 0; | |
214 | do { | |
215 | int32_t c = fgetc(infile); | |
216 | if (!feof(infile)) { | |
217 | inbuf[i++] = c & 0xFF; | |
218 | compressed_fpga_stream.avail_in++; | |
219 | } else { | |
220 | break; | |
221 | } | |
222 | } while (i < DECOMPRESS_BUF_SIZE); | |
223 | } | |
224 | ||
225 | ret = inflate(&compressed_fpga_stream, Z_SYNC_FLUSH); | |
226 | ||
227 | if (ret != Z_OK && ret != Z_STREAM_END) { | |
228 | break; | |
229 | } | |
230 | ||
231 | if (compressed_fpga_stream.avail_out == 0) { | |
232 | for (uint16_t i = 0; i < DECOMPRESS_BUF_SIZE; i++) { | |
233 | fputc(outbuf[i], outfile); | |
234 | } | |
235 | compressed_fpga_stream.avail_out = DECOMPRESS_BUF_SIZE; | |
236 | compressed_fpga_stream.next_out = outbuf; | |
237 | } | |
238 | } while (ret == Z_OK); | |
239 | ||
240 | if (ret == Z_STREAM_END) { // reached end of input | |
241 | uint16_t i = 0; | |
242 | while (compressed_fpga_stream.avail_out < DECOMPRESS_BUF_SIZE) { | |
243 | fputc(outbuf[i++], outfile); | |
244 | compressed_fpga_stream.avail_out++; | |
245 | } | |
246 | fclose(outfile); | |
247 | fclose(infile); | |
248 | return(EXIT_SUCCESS); | |
249 | } else { | |
250 | fprintf(stderr, "Error. Inflate() returned error %i, %s", ret, compressed_fpga_stream.msg); | |
251 | fclose(outfile); | |
252 | fclose(infile); | |
253 | return(EXIT_FAILURE); | |
254 | } | |
255 | ||
256 | } | |
257 | ||
258 | ||
259 | /* Simple Xilinx .bit parser. The file starts with the fixed opaque byte sequence | |
260 | * 00 09 0f f0 0f f0 0f f0 0f f0 00 00 01 | |
261 | * After that the format is 1 byte section type (ASCII character), 2 byte length | |
262 | * (big endian), <length> bytes content. Except for section 'e' which has 4 bytes | |
263 | * length. | |
264 | */ | |
265 | static int bitparse_find_section(FILE *infile, char section_name, unsigned int *section_length) | |
266 | { | |
267 | int result = 0; | |
268 | #define MAX_FPGA_BIT_STREAM_HEADER_SEARCH 100 // maximum number of bytes to search for the requested section | |
269 | uint16_t numbytes = 0; | |
270 | while(numbytes < MAX_FPGA_BIT_STREAM_HEADER_SEARCH) { | |
271 | char current_name = (char)fgetc(infile); | |
272 | numbytes++; | |
273 | if(current_name < 'a' || current_name > 'e') { | |
274 | /* Strange section name, abort */ | |
275 | break; | |
276 | } | |
277 | unsigned int current_length = 0; | |
278 | switch(current_name) { | |
279 | case 'e': | |
280 | /* Four byte length field */ | |
281 | current_length += fgetc(infile) << 24; | |
282 | current_length += fgetc(infile) << 16; | |
283 | numbytes += 2; | |
284 | default: /* Fall through, two byte length field */ | |
285 | current_length += fgetc(infile) << 8; | |
286 | current_length += fgetc(infile) << 0; | |
287 | numbytes += 2; | |
288 | } | |
289 | ||
290 | if(current_name != 'e' && current_length > 255) { | |
291 | /* Maybe a parse error */ | |
292 | break; | |
293 | } | |
294 | ||
295 | if(current_name == section_name) { | |
296 | /* Found it */ | |
297 | *section_length = current_length; | |
298 | result = 1; | |
299 | break; | |
300 | } | |
301 | ||
302 | for (uint16_t i = 0; i < current_length && numbytes < MAX_FPGA_BIT_STREAM_HEADER_SEARCH; i++) { | |
303 | (void)fgetc(infile); | |
304 | numbytes++; | |
305 | } | |
306 | } | |
307 | ||
308 | return result; | |
309 | } | |
310 | ||
311 | ||
312 | static int FpgaGatherVersion(FILE *infile, char* infile_name, char *dst, int len) | |
313 | { | |
314 | unsigned int fpga_info_len; | |
315 | char tempstr[40] = {0x00}; | |
316 | ||
317 | dst[0] = '\0'; | |
318 | ||
319 | for (uint16_t i = 0; i < FPGA_BITSTREAM_FIXED_HEADER_SIZE; i++) { | |
320 | if (fgetc(infile) != bitparse_fixed_header[i]) { | |
321 | fprintf(stderr, "Invalid FPGA file. Aborting...\n\n"); | |
322 | return(EXIT_FAILURE); | |
323 | } | |
324 | } | |
325 | ||
326 | strncat(dst, basename(infile_name), len-1); | |
327 | // if (bitparse_find_section(infile, 'a', &fpga_info_len)) { | |
328 | // for (uint16_t i = 0; i < fpga_info_len; i++) { | |
329 | // char c = (char)fgetc(infile); | |
330 | // if (i < sizeof(tempstr)) { | |
331 | // tempstr[i] = c; | |
332 | // } | |
333 | // } | |
334 | // strncat(dst, tempstr, len-1); | |
335 | // } | |
336 | strncat(dst, " built", len-1); | |
337 | if (bitparse_find_section(infile, 'b', &fpga_info_len)) { | |
338 | strncat(dst, " for ", len-1); | |
339 | for (uint16_t i = 0; i < fpga_info_len; i++) { | |
340 | char c = (char)fgetc(infile); | |
341 | if (i < sizeof(tempstr)) { | |
342 | tempstr[i] = c; | |
343 | } | |
344 | } | |
345 | strncat(dst, tempstr, len-1); | |
346 | } | |
347 | if (bitparse_find_section(infile, 'c', &fpga_info_len)) { | |
348 | strncat(dst, " on ", len-1); | |
349 | for (uint16_t i = 0; i < fpga_info_len; i++) { | |
350 | char c = (char)fgetc(infile); | |
351 | if (i < sizeof(tempstr)) { | |
352 | tempstr[i] = c; | |
353 | } | |
354 | } | |
355 | strncat(dst, tempstr, len-1); | |
356 | } | |
357 | if (bitparse_find_section(infile, 'd', &fpga_info_len)) { | |
358 | strncat(dst, " at ", len-1); | |
359 | for (uint16_t i = 0; i < fpga_info_len; i++) { | |
360 | char c = (char)fgetc(infile); | |
361 | if (i < sizeof(tempstr)) { | |
362 | tempstr[i] = c; | |
363 | } | |
364 | } | |
365 | strncat(dst, tempstr, len-1); | |
366 | } | |
367 | return 0; | |
368 | } | |
369 | ||
370 | ||
371 | static void print_version_info_preamble(FILE *outfile, int num_infiles) { | |
372 | fprintf(outfile, "//-----------------------------------------------------------------------------\n"); | |
373 | fprintf(outfile, "// piwi, 2018\n"); | |
374 | fprintf(outfile, "//\n"); | |
375 | fprintf(outfile, "// This code is licensed to you under the terms of the GNU GPL, version 2 or,\n"); | |
376 | fprintf(outfile, "// at your option, any later version. See the LICENSE.txt file for the text of\n"); | |
377 | fprintf(outfile, "// the license.\n"); | |
378 | fprintf(outfile, "//-----------------------------------------------------------------------------\n"); | |
379 | fprintf(outfile, "// Version information on fpga images\n"); | |
380 | fprintf(outfile, "//\n"); | |
381 | fprintf(outfile, "// This file is generated by fpga_compress. Don't edit!\n"); | |
382 | fprintf(outfile, "//-----------------------------------------------------------------------------\n"); | |
383 | fprintf(outfile, "\n"); | |
384 | fprintf(outfile, "\n"); | |
385 | fprintf(outfile, "const int fpga_bitstream_num = %d;\n", num_infiles); | |
386 | fprintf(outfile, "const char* const fpga_version_information[%d] = {\n", num_infiles); | |
387 | } | |
388 | ||
389 | ||
390 | static int generate_fpga_version_info(FILE *infile[], char *infile_names[], int num_infiles, FILE *outfile) { | |
391 | ||
392 | char version_string[80] = ""; | |
393 | ||
394 | print_version_info_preamble(outfile, num_infiles); | |
395 | ||
396 | for (int i = 0; i < num_infiles; i++) { | |
397 | FpgaGatherVersion(infile[i], infile_names[i], version_string, sizeof(version_string)); | |
398 | fprintf(outfile, "\t\"%s\"", version_string); | |
399 | if (i != num_infiles-1) { | |
400 | fprintf(outfile, ","); | |
401 | } | |
402 | fprintf(outfile,"\n"); | |
403 | } | |
404 | ||
405 | fprintf(outfile, "};\n"); | |
406 | ||
407 | return 0; | |
408 | } | |
409 | ||
410 | ||
411 | int main(int argc, char **argv) | |
412 | { | |
413 | FILE **infiles; | |
414 | char **infile_names; | |
415 | FILE *outfile; | |
416 | ||
417 | if (argc == 1 || argc == 2) { | |
418 | usage(); | |
419 | return(EXIT_FAILURE); | |
420 | } | |
421 | ||
422 | if (!strcmp(argv[1], "-d")) { // Decompress | |
423 | ||
424 | infiles = calloc(1, sizeof(FILE*)); | |
425 | if (argc != 4) { | |
426 | usage(); | |
427 | return(EXIT_FAILURE); | |
428 | } | |
429 | infiles[0] = fopen(argv[2], "rb"); | |
430 | if (infiles[0] == NULL) { | |
431 | fprintf(stderr, "Error. Cannot open input file %s\n\n", argv[2]); | |
432 | return(EXIT_FAILURE); | |
433 | } | |
434 | outfile = fopen(argv[3], "wb"); | |
435 | if (outfile == NULL) { | |
436 | fprintf(stderr, "Error. Cannot open output file %s\n\n", argv[3]); | |
437 | return(EXIT_FAILURE); | |
438 | } | |
439 | return zlib_decompress(infiles[0], outfile); | |
440 | ||
441 | } else { // Compress or gemerate version info | |
442 | ||
443 | bool hardnested_mode = false; | |
444 | bool generate_version_file = false; | |
445 | int num_input_files = 0; | |
446 | if (!strcmp(argv[1], "-t")) { // compress one hardnested table | |
447 | if (argc != 4) { | |
448 | usage(); | |
449 | return(EXIT_FAILURE); | |
450 | } | |
451 | hardnested_mode = true; | |
452 | num_input_files = 1; | |
453 | } else if (!strcmp(argv[1], "-v")) { // generate version info | |
454 | generate_version_file = true; | |
455 | num_input_files = argc-3; | |
456 | } else { // compress 1..n fpga files | |
457 | num_input_files = argc-2; | |
458 | } | |
459 | ||
460 | infiles = calloc(num_input_files, sizeof(FILE*)); | |
461 | infile_names = calloc(num_input_files, sizeof(char*)); | |
462 | for (uint16_t i = 0; i < num_input_files; i++) { | |
463 | infile_names[i] = argv[i+((hardnested_mode || generate_version_file)?2:1)]; | |
464 | infiles[i] = fopen(infile_names[i], "rb"); | |
465 | if (infiles[i] == NULL) { | |
466 | fprintf(stderr, "Error. Cannot open input file %s\n\n", infile_names[i]); | |
467 | return(EXIT_FAILURE); | |
468 | } | |
469 | } | |
470 | outfile = fopen(argv[argc-1], "wb"); | |
471 | if (outfile == NULL) { | |
472 | fprintf(stderr, "Error. Cannot open output file %s\n\n", argv[argc-1]); | |
473 | return(EXIT_FAILURE); | |
474 | } | |
475 | if (generate_version_file) { | |
476 | if (generate_fpga_version_info(infiles, infile_names, num_input_files, outfile)) { | |
477 | return(EXIT_FAILURE); | |
478 | } | |
479 | } else { | |
480 | return zlib_compress(infiles, num_input_files, outfile, hardnested_mode); | |
481 | } | |
482 | } | |
483 | } |