Blame view

tools/ifdtool.c 28.1 KB
83d290c56   Tom Rini   SPDX: Convert all...
1
  // SPDX-License-Identifier: GPL-2.0
cd392fe8a   Simon Glass   x86: Add ifdtool ...
2
3
4
5
6
  /*
   * ifdtool - Manage Intel Firmware Descriptor information
   *
   * Copyright 2014 Google, Inc
   *
cd392fe8a   Simon Glass   x86: Add ifdtool ...
7
8
9
10
11
12
13
   * From Coreboot project, but it got a serious code clean-up
   * and a few new features
   */
  
  #include <assert.h>
  #include <fcntl.h>
  #include <getopt.h>
d2bf1152c   Masahiro Yamada   tools: include ne...
14
  #include <stdbool.h>
cd392fe8a   Simon Glass   x86: Add ifdtool ...
15
16
17
18
19
20
  #include <stdlib.h>
  #include <stdio.h>
  #include <string.h>
  #include <unistd.h>
  #include <sys/types.h>
  #include <sys/stat.h>
b08c8c487   Masahiro Yamada   libfdt: move head...
21
  #include <linux/libfdt.h>
cd392fe8a   Simon Glass   x86: Add ifdtool ...
22
23
24
25
26
27
28
29
30
31
32
33
34
  #include "ifdtool.h"
  
  #undef DEBUG
  
  #ifdef DEBUG
  #define debug(fmt, args...)	printf(fmt, ##args)
  #else
  #define debug(fmt, args...)
  #endif
  
  #define FD_SIGNATURE		0x0FF0A55A
  #define FLREG_BASE(reg)		((reg & 0x00000fff) << 12);
  #define FLREG_LIMIT(reg)	(((reg & 0x0fff0000) >> 4) | 0xfff);
65851fcec   Simon Glass   x86: ifdtool: Use...
35
36
37
  struct input_file {
  	char *fname;
  	unsigned int addr;
65851fcec   Simon Glass   x86: ifdtool: Use...
38
  };
cd392fe8a   Simon Glass   x86: Add ifdtool ...
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
  /**
   * find_fd() - Find the flash description in the ROM image
   *
   * @image:	Pointer to image
   * @size:	Size of image in bytes
   * @return pointer to structure, or NULL if not found
   */
  static struct fdbar_t *find_fd(char *image, int size)
  {
  	uint32_t *ptr, *end;
  
  	/* Scan for FD signature */
  	for (ptr = (uint32_t *)image, end = ptr + size / 4; ptr < end; ptr++) {
  		if (*ptr == FD_SIGNATURE)
  			break;
  	}
  
  	if (ptr == end) {
  		printf("No Flash Descriptor found in this image
  ");
  		return NULL;
  	}
7e8ffa4ed   Simon Glass   x86: ifdtool: Cor...
61
62
63
  	debug("Found Flash Descriptor signature at 0x%08lx
  ",
  	      (char *)ptr - image);
cd392fe8a   Simon Glass   x86: Add ifdtool ...
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
  
  	return (struct fdbar_t *)ptr;
  }
  
  /**
   * get_region() - Get information about the selected region
   *
   * @frba:		Flash region list
   * @region_type:	Type of region (0..MAX_REGIONS-1)
   * @region:		Region information is written here
   * @return 0 if OK, else -ve
   */
  static int get_region(struct frba_t *frba, int region_type,
  		      struct region_t *region)
  {
  	if (region_type >= MAX_REGIONS) {
  		fprintf(stderr, "Invalid region type.
  ");
  		return -1;
  	}
  
  	region->base = FLREG_BASE(frba->flreg[region_type]);
  	region->limit = FLREG_LIMIT(frba->flreg[region_type]);
  	region->size = region->limit - region->base + 1;
  
  	return 0;
  }
  
  static const char *region_name(int region_type)
  {
  	static const char *const regions[] = {
  		"Flash Descriptor",
  		"BIOS",
  		"Intel ME",
  		"GbE",
  		"Platform Data"
  	};
  
  	assert(region_type < MAX_REGIONS);
  
  	return regions[region_type];
  }
  
  static const char *region_filename(int region_type)
  {
  	static const char *const region_filenames[] = {
  		"flashregion_0_flashdescriptor.bin",
  		"flashregion_1_bios.bin",
  		"flashregion_2_intel_me.bin",
  		"flashregion_3_gbe.bin",
  		"flashregion_4_platform_data.bin"
  	};
  
  	assert(region_type < MAX_REGIONS);
  
  	return region_filenames[region_type];
  }
  
  static int dump_region(int num, struct frba_t *frba)
  {
  	struct region_t region;
  	int ret;
  
  	ret = get_region(frba, num, &region);
  	if (ret)
  		return ret;
  
  	printf("  Flash Region %d (%s): %08x - %08x %s
  ",
  	       num, region_name(num), region.base, region.limit,
  	       region.size < 1 ? "(unused)" : "");
  
  	return ret;
  }
  
  static void dump_frba(struct frba_t *frba)
  {
  	int i;
  
  	printf("Found Region Section
  ");
  	for (i = 0; i < MAX_REGIONS; i++) {
  		printf("FLREG%d:    0x%08x
  ", i, frba->flreg[i]);
  		dump_region(i, frba);
  	}
  }
  
  static void decode_spi_frequency(unsigned int freq)
  {
  	switch (freq) {
  	case SPI_FREQUENCY_20MHZ:
  		printf("20MHz");
  		break;
  	case SPI_FREQUENCY_33MHZ:
  		printf("33MHz");
  		break;
  	case SPI_FREQUENCY_50MHZ:
  		printf("50MHz");
  		break;
  	default:
  		printf("unknown<%x>MHz", freq);
  	}
  }
  
  static void decode_component_density(unsigned int density)
  {
  	switch (density) {
  	case COMPONENT_DENSITY_512KB:
  		printf("512KiB");
  		break;
  	case COMPONENT_DENSITY_1MB:
  		printf("1MiB");
  		break;
  	case COMPONENT_DENSITY_2MB:
  		printf("2MiB");
  		break;
  	case COMPONENT_DENSITY_4MB:
  		printf("4MiB");
  		break;
  	case COMPONENT_DENSITY_8MB:
  		printf("8MiB");
  		break;
  	case COMPONENT_DENSITY_16MB:
  		printf("16MiB");
  		break;
  	default:
  		printf("unknown<%x>MiB", density);
  	}
  }
  
  static void dump_fcba(struct fcba_t *fcba)
  {
  	printf("
  Found Component Section
  ");
  	printf("FLCOMP     0x%08x
  ", fcba->flcomp);
  	printf("  Dual Output Fast Read Support:       %ssupported
  ",
  	       (fcba->flcomp & (1 << 30)) ? "" : "not ");
  	printf("  Read ID/Read Status Clock Frequency: ");
  	decode_spi_frequency((fcba->flcomp >> 27) & 7);
  	printf("
    Write/Erase Clock Frequency:         ");
  	decode_spi_frequency((fcba->flcomp >> 24) & 7);
  	printf("
    Fast Read Clock Frequency:           ");
  	decode_spi_frequency((fcba->flcomp >> 21) & 7);
  	printf("
    Fast Read Support:                   %ssupported",
  	       (fcba->flcomp & (1 << 20)) ? "" : "not ");
  	printf("
    Read Clock Frequency:                ");
  	decode_spi_frequency((fcba->flcomp >> 17) & 7);
  	printf("
    Component 2 Density:                 ");
  	decode_component_density((fcba->flcomp >> 3) & 7);
  	printf("
    Component 1 Density:                 ");
  	decode_component_density(fcba->flcomp & 7);
  	printf("
  ");
  	printf("FLILL      0x%08x
  ", fcba->flill);
  	printf("  Invalid Instruction 3: 0x%02x
  ",
  	       (fcba->flill >> 24) & 0xff);
  	printf("  Invalid Instruction 2: 0x%02x
  ",
  	       (fcba->flill >> 16) & 0xff);
  	printf("  Invalid Instruction 1: 0x%02x
  ",
  	       (fcba->flill >> 8) & 0xff);
  	printf("  Invalid Instruction 0: 0x%02x
  ",
  	       fcba->flill & 0xff);
  	printf("FLPB       0x%08x
  ", fcba->flpb);
  	printf("  Flash Partition Boundary Address: 0x%06x
  
  ",
  	       (fcba->flpb & 0xfff) << 12);
  }
  
  static void dump_fpsba(struct fpsba_t *fpsba)
  {
  	int i;
  
  	printf("Found PCH Strap Section
  ");
  	for (i = 0; i < MAX_STRAPS; i++)
  		printf("PCHSTRP%-2d:  0x%08x
  ", i, fpsba->pchstrp[i]);
  }
  
  static const char *get_enabled(int flag)
  {
  	return flag ? "enabled" : "disabled";
  }
  
  static void decode_flmstr(uint32_t flmstr)
  {
  	printf("  Platform Data Region Write Access: %s
  ",
  	       get_enabled(flmstr & (1 << 28)));
  	printf("  GbE Region Write Access:           %s
  ",
  	       get_enabled(flmstr & (1 << 27)));
  	printf("  Intel ME Region Write Access:      %s
  ",
  	       get_enabled(flmstr & (1 << 26)));
  	printf("  Host CPU/BIOS Region Write Access: %s
  ",
  	       get_enabled(flmstr & (1 << 25)));
  	printf("  Flash Descriptor Write Access:     %s
  ",
  	       get_enabled(flmstr & (1 << 24)));
  
  	printf("  Platform Data Region Read Access:  %s
  ",
  	       get_enabled(flmstr & (1 << 20)));
  	printf("  GbE Region Read Access:            %s
  ",
  	       get_enabled(flmstr & (1 << 19)));
  	printf("  Intel ME Region Read Access:       %s
  ",
  	       get_enabled(flmstr & (1 << 18)));
  	printf("  Host CPU/BIOS Region Read Access:  %s
  ",
  	       get_enabled(flmstr & (1 << 17)));
  	printf("  Flash Descriptor Read Access:      %s
  ",
  	       get_enabled(flmstr & (1 << 16)));
  
  	printf("  Requester ID:                      0x%04x
  
  ",
  	       flmstr & 0xffff);
  }
  
  static void dump_fmba(struct fmba_t *fmba)
  {
  	printf("Found Master Section
  ");
  	printf("FLMSTR1:   0x%08x (Host CPU/BIOS)
  ", fmba->flmstr1);
  	decode_flmstr(fmba->flmstr1);
  	printf("FLMSTR2:   0x%08x (Intel ME)
  ", fmba->flmstr2);
  	decode_flmstr(fmba->flmstr2);
  	printf("FLMSTR3:   0x%08x (GbE)
  ", fmba->flmstr3);
  	decode_flmstr(fmba->flmstr3);
  }
  
  static void dump_fmsba(struct fmsba_t *fmsba)
  {
  	int i;
  
  	printf("Found Processor Strap Section
  ");
  	for (i = 0; i < 4; i++)
  		printf("????:      0x%08x
  ", fmsba->data[0]);
  }
  
  static void dump_jid(uint32_t jid)
  {
  	printf("    SPI Component Device ID 1:          0x%02x
  ",
  	       (jid >> 16) & 0xff);
  	printf("    SPI Component Device ID 0:          0x%02x
  ",
  	       (jid >> 8) & 0xff);
  	printf("    SPI Component Vendor ID:            0x%02x
  ",
  	       jid & 0xff);
  }
  
  static void dump_vscc(uint32_t vscc)
  {
  	printf("    Lower Erase Opcode:                 0x%02x
  ",
  	       vscc >> 24);
  	printf("    Lower Write Enable on Write Status: 0x%02x
  ",
  	       vscc & (1 << 20) ? 0x06 : 0x50);
  	printf("    Lower Write Status Required:        %s
  ",
  	       vscc & (1 << 19) ? "Yes" : "No");
  	printf("    Lower Write Granularity:            %d bytes
  ",
  	       vscc & (1 << 18) ? 64 : 1);
  	printf("    Lower Block / Sector Erase Size:    ");
  	switch ((vscc >> 16) & 0x3) {
  	case 0:
  		printf("256 Byte
  ");
  		break;
  	case 1:
  		printf("4KB
  ");
  		break;
  	case 2:
  		printf("8KB
  ");
  		break;
  	case 3:
  		printf("64KB
  ");
  		break;
  	}
  
  	printf("    Upper Erase Opcode:                 0x%02x
  ",
  	       (vscc >> 8) & 0xff);
  	printf("    Upper Write Enable on Write Status: 0x%02x
  ",
  	       vscc & (1 << 4) ? 0x06 : 0x50);
  	printf("    Upper Write Status Required:        %s
  ",
  	       vscc & (1 << 3) ? "Yes" : "No");
  	printf("    Upper Write Granularity:            %d bytes
  ",
  	       vscc & (1 << 2) ? 64 : 1);
  	printf("    Upper Block / Sector Erase Size:    ");
  	switch (vscc & 0x3) {
  	case 0:
  		printf("256 Byte
  ");
  		break;
  	case 1:
  		printf("4KB
  ");
  		break;
  	case 2:
  		printf("8KB
  ");
  		break;
  	case 3:
  		printf("64KB
  ");
  		break;
  	}
  }
  
  static void dump_vtba(struct vtba_t *vtba, int vtl)
  {
  	int i;
  	int num = (vtl >> 1) < 8 ? (vtl >> 1) : 8;
  
  	printf("ME VSCC table:
  ");
  	for (i = 0; i < num; i++) {
  		printf("  JID%d:  0x%08x
  ", i, vtba->entry[i].jid);
  		dump_jid(vtba->entry[i].jid);
  		printf("  VSCC%d: 0x%08x
  ", i, vtba->entry[i].vscc);
  		dump_vscc(vtba->entry[i].vscc);
  	}
  	printf("
  ");
  }
  
  static void dump_oem(uint8_t *oem)
  {
  	int i, j;
  	printf("OEM Section:
  ");
  	for (i = 0; i < 4; i++) {
  		printf("%02x:", i << 4);
  		for (j = 0; j < 16; j++)
  			printf(" %02x", oem[(i<<4)+j]);
  		printf("
  ");
  	}
  	printf("
  ");
  }
  
  /**
   * dump_fd() - Display a dump of the full flash description
   *
   * @image:	Pointer to image
   * @size:	Size of image in bytes
   * @return 0 if OK, -1 on error
   */
  static int dump_fd(char *image, int size)
  {
  	struct fdbar_t *fdb = find_fd(image, size);
  
  	if (!fdb)
  		return -1;
  
  	printf("FLMAP0:    0x%08x
  ", fdb->flmap0);
  	printf("  NR:      %d
  ", (fdb->flmap0 >> 24) & 7);
  	printf("  FRBA:    0x%x
  ", ((fdb->flmap0 >> 16) & 0xff) << 4);
  	printf("  NC:      %d
  ", ((fdb->flmap0 >> 8) & 3) + 1);
  	printf("  FCBA:    0x%x
  ", ((fdb->flmap0) & 0xff) << 4);
  
  	printf("FLMAP1:    0x%08x
  ", fdb->flmap1);
  	printf("  ISL:     0x%02x
  ", (fdb->flmap1 >> 24) & 0xff);
  	printf("  FPSBA:   0x%x
  ", ((fdb->flmap1 >> 16) & 0xff) << 4);
  	printf("  NM:      %d
  ", (fdb->flmap1 >> 8) & 3);
  	printf("  FMBA:    0x%x
  ", ((fdb->flmap1) & 0xff) << 4);
  
  	printf("FLMAP2:    0x%08x
  ", fdb->flmap2);
  	printf("  PSL:     0x%04x
  ", (fdb->flmap2 >> 8) & 0xffff);
  	printf("  FMSBA:   0x%x
  ", ((fdb->flmap2) & 0xff) << 4);
  
  	printf("FLUMAP1:   0x%08x
  ", fdb->flumap1);
  	printf("  Intel ME VSCC Table Length (VTL):        %d
  ",
  	       (fdb->flumap1 >> 8) & 0xff);
  	printf("  Intel ME VSCC Table Base Address (VTBA): 0x%06x
  
  ",
  	       (fdb->flumap1 & 0xff) << 4);
  	dump_vtba((struct vtba_t *)
  			(image + ((fdb->flumap1 & 0xff) << 4)),
  			(fdb->flumap1 >> 8) & 0xff);
  	dump_oem((uint8_t *)image + 0xf00);
  	dump_frba((struct frba_t *)(image + (((fdb->flmap0 >> 16) & 0xff)
  			<< 4)));
  	dump_fcba((struct fcba_t *)(image + (((fdb->flmap0) & 0xff) << 4)));
  	dump_fpsba((struct fpsba_t *)
  			(image + (((fdb->flmap1 >> 16) & 0xff) << 4)));
  	dump_fmba((struct fmba_t *)(image + (((fdb->flmap1) & 0xff) << 4)));
  	dump_fmsba((struct fmsba_t *)(image + (((fdb->flmap2) & 0xff) << 4)));
  
  	return 0;
  }
  
  /**
   * write_regions() - Write each region from an image to its own file
   *
   * The filename to use in each case is fixed - see region_filename()
   *
   * @image:	Pointer to image
   * @size:	Size of image in bytes
   * @return 0 if OK, -ve on error
   */
  static int write_regions(char *image, int size)
  {
  	struct fdbar_t *fdb;
  	struct frba_t *frba;
  	int ret = 0;
  	int i;
  
  	fdb =  find_fd(image, size);
  	if (!fdb)
  		return -1;
  
  	frba = (struct frba_t *)(image + (((fdb->flmap0 >> 16) & 0xff) << 4));
  
  	for (i = 0; i < MAX_REGIONS; i++) {
  		struct region_t region;
  		int region_fd;
  
  		ret = get_region(frba, i, &region);
  		if (ret)
  			return ret;
  		dump_region(i, frba);
6c4247e98   Bin Meng   tools: ifdtool: D...
543
  		if (region.size <= 0)
cd392fe8a   Simon Glass   x86: Add ifdtool ...
544
545
546
547
548
549
550
551
552
553
554
555
556
557
  			continue;
  		region_fd = open(region_filename(i),
  				 O_WRONLY | O_CREAT | O_TRUNC, S_IRUSR |
  				 S_IWUSR | S_IRGRP | S_IROTH);
  		if (write(region_fd, image + region.base, region.size) !=
  				region.size) {
  			perror("Error while writing");
  			ret = -1;
  		}
  		close(region_fd);
  	}
  
  	return ret;
  }
fa8d3b00f   Simon Glass   x86: ifdtool: Dis...
558
559
560
561
562
563
564
565
566
  static int perror_fname(const char *fmt, const char *fname)
  {
  	char msg[strlen(fmt) + strlen(fname) + 1];
  
  	sprintf(msg, fmt, fname);
  	perror(msg);
  
  	return -1;
  }
cd392fe8a   Simon Glass   x86: Add ifdtool ...
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
  /**
   * write_image() - Write the image to a file
   *
   * @filename:	Filename to use for the image
   * @image:	Pointer to image
   * @size:	Size of image in bytes
   * @return 0 if OK, -ve on error
   */
  static int write_image(char *filename, char *image, int size)
  {
  	int new_fd;
  
  	debug("Writing new image to %s
  ", filename);
  
  	new_fd = open(filename, O_WRONLY | O_CREAT | O_TRUNC, S_IRUSR |
  		      S_IWUSR | S_IRGRP | S_IROTH);
fa8d3b00f   Simon Glass   x86: ifdtool: Dis...
584
585
586
587
  	if (new_fd < 0)
  		return perror_fname("Could not open file '%s'", filename);
  	if (write(new_fd, image, size) != size)
  		return perror_fname("Could not write file '%s'", filename);
cd392fe8a   Simon Glass   x86: Add ifdtool ...
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
  	close(new_fd);
  
  	return 0;
  }
  
  /**
   * set_spi_frequency() - Set the SPI frequency to use when booting
   *
   * Several frequencies are supported, some of which work with fast devices.
   * For SPI emulators, the slowest (SPI_FREQUENCY_20MHZ) is often used. The
   * Intel boot system uses this information somehow on boot.
   *
   * The image is updated with the supplied value
   *
   * @image:	Pointer to image
   * @size:	Size of image in bytes
   * @freq:	SPI frequency to use
   */
  static void set_spi_frequency(char *image, int size, enum spi_frequency freq)
  {
  	struct fdbar_t *fdb = find_fd(image, size);
  	struct fcba_t *fcba;
  
  	fcba = (struct fcba_t *)(image + (((fdb->flmap0) & 0xff) << 4));
  
  	/* clear bits 21-29 */
  	fcba->flcomp &= ~0x3fe00000;
  	/* Read ID and Read Status Clock Frequency */
  	fcba->flcomp |= freq << 27;
  	/* Write and Erase Clock Frequency */
  	fcba->flcomp |= freq << 24;
  	/* Fast Read Clock Frequency */
  	fcba->flcomp |= freq << 21;
  }
  
  /**
   * set_em100_mode() - Set a SPI frequency that will work with Dediprog EM100
   *
   * @image:	Pointer to image
   * @size:	Size of image in bytes
   */
  static void set_em100_mode(char *image, int size)
  {
  	struct fdbar_t *fdb = find_fd(image, size);
  	struct fcba_t *fcba;
  
  	fcba = (struct fcba_t *)(image + (((fdb->flmap0) & 0xff) << 4));
  	fcba->flcomp &= ~(1 << 30);
  	set_spi_frequency(image, size, SPI_FREQUENCY_20MHZ);
  }
  
  /**
   * lock_descriptor() - Lock the NE descriptor so it cannot be updated
   *
   * @image:	Pointer to image
   * @size:	Size of image in bytes
   */
  static void lock_descriptor(char *image, int size)
  {
  	struct fdbar_t *fdb = find_fd(image, size);
  	struct fmba_t *fmba;
  
  	/*
  	 * TODO: Dynamically take Platform Data Region and GbE Region into
  	 * account.
  	 */
  	fmba = (struct fmba_t *)(image + (((fdb->flmap1) & 0xff) << 4));
  	fmba->flmstr1 = 0x0a0b0000;
  	fmba->flmstr2 = 0x0c0d0000;
  	fmba->flmstr3 = 0x08080118;
  }
  
  /**
   * unlock_descriptor() - Lock the NE descriptor so it can be updated
   *
   * @image:	Pointer to image
   * @size:	Size of image in bytes
   */
  static void unlock_descriptor(char *image, int size)
  {
  	struct fdbar_t *fdb = find_fd(image, size);
  	struct fmba_t *fmba;
  
  	fmba = (struct fmba_t *)(image + (((fdb->flmap1) & 0xff) << 4));
  	fmba->flmstr1 = 0xffff0000;
  	fmba->flmstr2 = 0xffff0000;
  	fmba->flmstr3 = 0x08080118;
  }
  
  /**
   * open_for_read() - Open a file for reading
   *
   * @fname:	Filename to open
   * @sizep:	Returns file size in bytes
   * @return 0 if OK, -1 on error
   */
  int open_for_read(const char *fname, int *sizep)
  {
  	int fd = open(fname, O_RDONLY);
  	struct stat buf;
fa8d3b00f   Simon Glass   x86: ifdtool: Dis...
688
689
690
691
  	if (fd == -1)
  		return perror_fname("Could not open file '%s'", fname);
  	if (fstat(fd, &buf) == -1)
  		return perror_fname("Could not stat file '%s'", fname);
cd392fe8a   Simon Glass   x86: Add ifdtool ...
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
  	*sizep = buf.st_size;
  	debug("File %s is %d bytes
  ", fname, *sizep);
  
  	return fd;
  }
  
  /**
   * inject_region() - Add a file to an image region
   *
   * This puts a file into a particular region of the flash. Several pre-defined
   * regions are used.
   *
   * @image:		Pointer to image
   * @size:		Size of image in bytes
   * @region_type:	Region where the file should be added
   * @region_fname:	Filename to add to the image
   * @return 0 if OK, -ve on error
   */
  int inject_region(char *image, int size, int region_type, char *region_fname)
  {
  	struct fdbar_t *fdb = find_fd(image, size);
  	struct region_t region;
  	struct frba_t *frba;
  	int region_size;
  	int offset = 0;
  	int region_fd;
  	int ret;
  
  	if (!fdb)
  		exit(EXIT_FAILURE);
  	frba = (struct frba_t *)(image + (((fdb->flmap0 >> 16) & 0xff) << 4));
  
  	ret = get_region(frba, region_type, &region);
  	if (ret)
  		return -1;
  	if (region.size <= 0xfff) {
  		fprintf(stderr, "Region %s is disabled in target. Not injecting.
  ",
  			region_name(region_type));
  		return -1;
  	}
  
  	region_fd = open_for_read(region_fname, &region_size);
  	if (region_fd < 0)
  		return region_fd;
  
  	if ((region_size > region.size) ||
  	    ((region_type != 1) && (region_size > region.size))) {
  		fprintf(stderr, "Region %s is %d(0x%x) bytes. File is %d(0x%x)  bytes. Not injecting.
  ",
  			region_name(region_type), region.size,
  			region.size, region_size, region_size);
  		return -1;
  	}
  
  	if ((region_type == 1) && (region_size < region.size)) {
  		fprintf(stderr, "Region %s is %d(0x%x) bytes. File is %d(0x%x) bytes. Padding before injecting.
  ",
  			region_name(region_type), region.size,
  			region.size, region_size, region_size);
  		offset = region.size - region_size;
  		memset(image + region.base, 0xff, offset);
  	}
  
  	if (size < region.base + offset + region_size) {
  		fprintf(stderr, "Output file is too small. (%d < %d)
  ",
  			size, region.base + offset + region_size);
  		return -1;
  	}
  
  	if (read(region_fd, image + region.base + offset, region_size)
  							!= region_size) {
  		perror("Could not read file");
  		return -1;
  	}
  
  	close(region_fd);
  
  	debug("Adding %s as the %s section
  ", region_fname,
  	      region_name(region_type));
  
  	return 0;
  }
  
  /**
   * write_data() - Write some raw data into a region
   *
   * This puts a file into a particular place in the flash, ignoring the
   * regions. Be careful not to overwrite something important.
   *
   * @image:		Pointer to image
   * @size:		Size of image in bytes
   * @addr:		x86 ROM address to put file. The ROM ends at
   *			0xffffffff so use an address relative to that. For an
   *			8MB ROM the start address is 0xfff80000.
   * @write_fname:	Filename to add to the image
3c7aab23a   Simon Glass   x86: ifdtool: Che...
791
   * @offset_uboot_top:	Offset of the top of U-Boot
e6378e1da   Bin Meng   x86: ifdtool: Sup...
792
   * @offset_uboot_start:	Offset of the start of U-Boot
31eca6972   Simon Glass   x86: ifdtool: Add...
793
   * @return number of bytes written if OK, -ve on error
cd392fe8a   Simon Glass   x86: Add ifdtool ...
794
795
   */
  static int write_data(char *image, int size, unsigned int addr,
e6378e1da   Bin Meng   x86: ifdtool: Sup...
796
797
  		      const char *write_fname, int offset_uboot_top,
  		      int offset_uboot_start)
cd392fe8a   Simon Glass   x86: Add ifdtool ...
798
799
800
801
802
803
804
  {
  	int write_fd, write_size;
  	int offset;
  
  	write_fd = open_for_read(write_fname, &write_size);
  	if (write_fd < 0)
  		return write_fd;
31eca6972   Simon Glass   x86: ifdtool: Add...
805
  	offset = (uint32_t)(addr + size);
e6378e1da   Bin Meng   x86: ifdtool: Sup...
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
  	if (offset_uboot_top) {
  		if (offset_uboot_start < offset &&
  		    offset_uboot_top >= offset) {
  			fprintf(stderr, "U-Boot image overlaps with region '%s'
  ",
  				write_fname);
  			fprintf(stderr,
  				"U-Boot finishes at offset %x, file starts at %x
  ",
  				offset_uboot_top, offset);
  			return -EXDEV;
  		}
  		if (offset_uboot_start > offset &&
  		    offset_uboot_start <= offset + write_size) {
  			fprintf(stderr, "U-Boot image overlaps with region '%s'
  ",
  				write_fname);
  			fprintf(stderr,
  				"U-Boot starts at offset %x, file finishes at %x
  ",
  				offset_uboot_start, offset + write_size);
  			return -EXDEV;
  		}
3c7aab23a   Simon Glass   x86: ifdtool: Che...
829
  	}
cd392fe8a   Simon Glass   x86: Add ifdtool ...
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
  	debug("Writing %s to offset %#x
  ", write_fname, offset);
  
  	if (offset < 0 || offset + write_size > size) {
  		fprintf(stderr, "Output file is too small. (%d < %d)
  ",
  			size, offset + write_size);
  		return -1;
  	}
  
  	if (read(write_fd, image + offset, write_size) != write_size) {
  		perror("Could not read file");
  		return -1;
  	}
  
  	close(write_fd);
31eca6972   Simon Glass   x86: ifdtool: Add...
846
847
  	return write_size;
  }
cd392fe8a   Simon Glass   x86: Add ifdtool ...
848
849
850
851
852
853
  static void print_version(void)
  {
  	printf("ifdtool v%s -- ", IFDTOOL_VERSION);
  	printf("Copyright (C) 2014 Google Inc.
  
  ");
f739fcd83   Tom Rini   SPDX: Convert a f...
854
855
  	printf("SPDX-License-Identifier: GPL-2.0+
  ");
cd392fe8a   Simon Glass   x86: Add ifdtool ...
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
  }
  
  static void print_usage(const char *name)
  {
  	printf("usage: %s [-vhdix?] <filename> [<outfile>]
  ", name);
  	printf("
  "
  	       "   -d | --dump:                      dump intel firmware descriptor
  "
  	       "   -x | --extract:                   extract intel fd modules
  "
  	       "   -i | --inject <region>:<module>   inject file <module> into region <region>
  "
  	       "   -w | --write <addr>:<file>        write file to appear at memory address <addr>
  "
673ed2f8c   Bin Meng   tools/ifdtool: Su...
872
873
  	       "                                     multiple files can be written simultaneously
  "
cd392fe8a   Simon Glass   x86: Add ifdtool ...
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
  	       "   -s | --spifreq <20|33|50>         set the SPI frequency
  "
  	       "   -e | --em100                      set SPI frequency to 20MHz and disable
  "
  	       "                                     Dual Output Fast Read Support
  "
  	       "   -l | --lock                       Lock firmware descriptor and ME region
  "
  	       "   -u | --unlock                     Unlock firmware descriptor and ME region
  "
  	       "   -r | --romsize                    Specify ROM size
  "
  	       "   -D | --write-descriptor <file>    Write descriptor at base
  "
  	       "   -c | --create                     Create a new empty image
  "
  	       "   -v | --version:                   print the version
  "
  	       "   -h | --help:                      print this help
  
  "
  	       "<region> is one of Descriptor, BIOS, ME, GbE, Platform
  "
  	       "
  ");
  }
  
  /**
   * get_two_words() - Convert a string into two words separated by :
   *
   * The supplied string is split at ':', two substrings are allocated and
   * returned.
   *
   * @str:	String to split
   * @firstp:	Returns first string
   * @secondp:	Returns second string
   * @return 0 if OK, -ve if @str does not have a :
   */
  static int get_two_words(const char *str, char **firstp, char **secondp)
  {
  	const char *p;
  
  	p = strchr(str, ':');
  	if (!p)
  		return -1;
  	*firstp = strdup(str);
  	(*firstp)[p - str] = '\0';
  	*secondp = strdup(p + 1);
  
  	return 0;
  }
  
  int main(int argc, char *argv[])
  {
  	int opt, option_index = 0;
  	int mode_dump = 0, mode_extract = 0, mode_inject = 0;
  	int mode_spifreq = 0, mode_em100 = 0, mode_locked = 0;
  	int mode_unlocked = 0, mode_write = 0, mode_write_descriptor = 0;
68af10022   Simon Glass   binman: Drop micr...
932
  	int create = 0;
7dfb172d6   Simon Glass   x86: ifdtool: Sep...
933
934
  	char *region_type_string = NULL, *inject_fname = NULL;
  	char *desc_fname = NULL, *addr_str = NULL;
cd392fe8a   Simon Glass   x86: Add ifdtool ...
935
936
  	int region_type = -1, inputfreq = 0;
  	enum spi_frequency spifreq = SPI_FREQUENCY_20MHZ;
31eca6972   Simon Glass   x86: ifdtool: Add...
937
  	struct input_file input_file[WRITE_MAX], *ifile, *fdt = NULL;
673ed2f8c   Bin Meng   tools/ifdtool: Su...
938
  	unsigned char wr_idx, wr_num = 0;
cd392fe8a   Simon Glass   x86: Add ifdtool ...
939
940
941
942
943
944
  	int rom_size = -1;
  	bool write_it;
  	char *filename;
  	char *outfile = NULL;
  	struct stat buf;
  	int size = 0;
31eca6972   Simon Glass   x86: ifdtool: Add...
945
  	bool have_uboot = false;
cd392fe8a   Simon Glass   x86: Add ifdtool ...
946
947
948
949
950
951
952
953
954
  	int bios_fd;
  	char *image;
  	int ret;
  	static struct option long_options[] = {
  		{"create", 0, NULL, 'c'},
  		{"dump", 0, NULL, 'd'},
  		{"descriptor", 1, NULL, 'D'},
  		{"em100", 0, NULL, 'e'},
  		{"extract", 0, NULL, 'x'},
31eca6972   Simon Glass   x86: ifdtool: Add...
955
  		{"fdt", 1, NULL, 'f'},
cd392fe8a   Simon Glass   x86: Add ifdtool ...
956
957
958
959
960
  		{"inject", 1, NULL, 'i'},
  		{"lock", 0, NULL, 'l'},
  		{"romsize", 1, NULL, 'r'},
  		{"spifreq", 1, NULL, 's'},
  		{"unlock", 0, NULL, 'u'},
31eca6972   Simon Glass   x86: ifdtool: Add...
961
  		{"uboot", 1, NULL, 'U'},
cd392fe8a   Simon Glass   x86: Add ifdtool ...
962
963
964
965
966
  		{"write", 1, NULL, 'w'},
  		{"version", 0, NULL, 'v'},
  		{"help", 0, NULL, 'h'},
  		{0, 0, 0, 0}
  	};
68af10022   Simon Glass   binman: Drop micr...
967
  	while ((opt = getopt_long(argc, argv, "cdD:ef:hi:lr:s:uU:vw:x?",
cd392fe8a   Simon Glass   x86: Add ifdtool ...
968
969
970
971
972
973
974
975
976
977
  				  long_options, &option_index)) != EOF) {
  		switch (opt) {
  		case 'c':
  			create = 1;
  			break;
  		case 'd':
  			mode_dump = 1;
  			break;
  		case 'D':
  			mode_write_descriptor = 1;
7dfb172d6   Simon Glass   x86: ifdtool: Sep...
978
  			desc_fname = optarg;
cd392fe8a   Simon Glass   x86: Add ifdtool ...
979
980
981
982
983
984
  			break;
  		case 'e':
  			mode_em100 = 1;
  			break;
  		case 'i':
  			if (get_two_words(optarg, &region_type_string,
7dfb172d6   Simon Glass   x86: ifdtool: Sep...
985
  					  &inject_fname)) {
cd392fe8a   Simon Glass   x86: Add ifdtool ...
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
  				print_usage(argv[0]);
  				exit(EXIT_FAILURE);
  			}
  			if (!strcasecmp("Descriptor", region_type_string))
  				region_type = 0;
  			else if (!strcasecmp("BIOS", region_type_string))
  				region_type = 1;
  			else if (!strcasecmp("ME", region_type_string))
  				region_type = 2;
  			else if (!strcasecmp("GbE", region_type_string))
  				region_type = 3;
  			else if (!strcasecmp("Platform", region_type_string))
  				region_type = 4;
  			if (region_type == -1) {
  				fprintf(stderr, "No such region type: '%s'
  
  ",
  					region_type_string);
  				print_usage(argv[0]);
  				exit(EXIT_FAILURE);
  			}
  			mode_inject = 1;
  			break;
  		case 'l':
  			mode_locked = 1;
  			break;
  		case 'r':
  			rom_size = strtol(optarg, NULL, 0);
  			debug("ROM size %d
  ", rom_size);
  			break;
  		case 's':
  			/* Parse the requested SPI frequency */
  			inputfreq = strtol(optarg, NULL, 0);
  			switch (inputfreq) {
  			case 20:
  				spifreq = SPI_FREQUENCY_20MHZ;
  				break;
  			case 33:
  				spifreq = SPI_FREQUENCY_33MHZ;
  				break;
  			case 50:
  				spifreq = SPI_FREQUENCY_50MHZ;
  				break;
  			default:
  				fprintf(stderr, "Invalid SPI Frequency: %d
  ",
  					inputfreq);
  				print_usage(argv[0]);
  				exit(EXIT_FAILURE);
  			}
  			mode_spifreq = 1;
  			break;
  		case 'u':
  			mode_unlocked = 1;
  			break;
  		case 'v':
  			print_version();
  			exit(EXIT_SUCCESS);
  			break;
  		case 'w':
31eca6972   Simon Glass   x86: ifdtool: Add...
1047
1048
  		case 'U':
  		case 'f':
65851fcec   Simon Glass   x86: ifdtool: Use...
1049
  			ifile = &input_file[wr_num];
cd392fe8a   Simon Glass   x86: Add ifdtool ...
1050
  			mode_write = 1;
673ed2f8c   Bin Meng   tools/ifdtool: Su...
1051
1052
  			if (wr_num < WRITE_MAX) {
  				if (get_two_words(optarg, &addr_str,
65851fcec   Simon Glass   x86: ifdtool: Use...
1053
  						  &ifile->fname)) {
673ed2f8c   Bin Meng   tools/ifdtool: Su...
1054
1055
1056
  					print_usage(argv[0]);
  					exit(EXIT_FAILURE);
  				}
50e8a6bba   Bin Meng   tools: ifdtool: W...
1057
  				ifile->addr = strtoll(optarg, NULL, 0);
673ed2f8c   Bin Meng   tools/ifdtool: Su...
1058
1059
1060
1061
1062
1063
  				wr_num++;
  			} else {
  				fprintf(stderr,
  					"The number of files to write simultaneously exceeds the limitation (%d)
  ",
  					WRITE_MAX);
cd392fe8a   Simon Glass   x86: Add ifdtool ...
1064
  			}
cd392fe8a   Simon Glass   x86: Add ifdtool ...
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
  			break;
  		case 'x':
  			mode_extract = 1;
  			break;
  		case 'h':
  		case '?':
  		default:
  			print_usage(argv[0]);
  			exit(EXIT_SUCCESS);
  			break;
  		}
  	}
  
  	if (mode_locked == 1 && mode_unlocked == 1) {
  		fprintf(stderr, "Locking/Unlocking FD and ME are mutually exclusive
  ");
  		exit(EXIT_FAILURE);
  	}
  
  	if (mode_inject == 1 && mode_write == 1) {
  		fprintf(stderr, "Inject/Write are mutually exclusive
  ");
  		exit(EXIT_FAILURE);
  	}
  
  	if ((mode_dump + mode_extract + mode_inject +
  		(mode_spifreq | mode_em100 | mode_unlocked |
  		 mode_locked)) > 1) {
  		fprintf(stderr, "You may not specify more than one mode.
  
  ");
  		print_usage(argv[0]);
  		exit(EXIT_FAILURE);
  	}
  
  	if ((mode_dump + mode_extract + mode_inject + mode_spifreq +
  	     mode_em100 + mode_locked + mode_unlocked + mode_write +
c03c951b0   Simon Glass   x86: ifdtool: All...
1102
  	     mode_write_descriptor) == 0 && !create) {
cd392fe8a   Simon Glass   x86: Add ifdtool ...
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
  		fprintf(stderr, "You need to specify a mode.
  
  ");
  		print_usage(argv[0]);
  		exit(EXIT_FAILURE);
  	}
  
  	if (create && rom_size == -1) {
  		fprintf(stderr, "You need to specify a rom size when creating.
  
  ");
  		exit(EXIT_FAILURE);
  	}
  
  	if (optind + 1 != argc) {
  		fprintf(stderr, "You need to specify a file.
  
  ");
  		print_usage(argv[0]);
  		exit(EXIT_FAILURE);
  	}
31eca6972   Simon Glass   x86: ifdtool: Add...
1124
1125
1126
1127
1128
1129
1130
1131
  	if (have_uboot && !fdt) {
  		fprintf(stderr,
  			"You must supply a device tree file for U-Boot
  
  ");
  		print_usage(argv[0]);
  		exit(EXIT_FAILURE);
  	}
cd392fe8a   Simon Glass   x86: Add ifdtool ...
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
  	filename = argv[optind];
  	if (optind + 2 != argc)
  		outfile = argv[optind + 1];
  
  	if (create)
  		bios_fd = open(filename, O_WRONLY | O_CREAT, 0666);
  	else
  		bios_fd = open(filename, outfile ? O_RDONLY : O_RDWR);
  
  	if (bios_fd == -1) {
  		perror("Could not open file");
  		exit(EXIT_FAILURE);
  	}
  
  	if (!create) {
  		if (fstat(bios_fd, &buf) == -1) {
  			perror("Could not stat file");
  			exit(EXIT_FAILURE);
  		}
  		size = buf.st_size;
  	}
  
  	debug("File %s is %d bytes
  ", filename, size);
  
  	if (rom_size == -1)
  		rom_size = size;
  
  	image = malloc(rom_size);
  	if (!image) {
  		printf("Out of memory.
  ");
  		exit(EXIT_FAILURE);
  	}
  
  	memset(image, '\xff', rom_size);
  	if (!create && read(bios_fd, image, size) != size) {
  		perror("Could not read file");
  		exit(EXIT_FAILURE);
  	}
  	if (size != rom_size) {
  		debug("ROM size changed to %d bytes
  ", rom_size);
  		size = rom_size;
  	}
  
  	write_it = true;
  	ret = 0;
  	if (mode_dump) {
  		ret = dump_fd(image, size);
  		write_it = false;
  	}
  
  	if (mode_extract) {
  		ret = write_regions(image, size);
  		write_it = false;
  	}
  
  	if (mode_write_descriptor)
e6378e1da   Bin Meng   x86: ifdtool: Sup...
1191
  		ret = write_data(image, size, -size, desc_fname, 0, 0);
cd392fe8a   Simon Glass   x86: Add ifdtool ...
1192
1193
  
  	if (mode_inject)
7dfb172d6   Simon Glass   x86: ifdtool: Sep...
1194
  		ret = inject_region(image, size, region_type, inject_fname);
cd392fe8a   Simon Glass   x86: Add ifdtool ...
1195

673ed2f8c   Bin Meng   tools/ifdtool: Su...
1196
  	if (mode_write) {
3c7aab23a   Simon Glass   x86: ifdtool: Che...
1197
  		int offset_uboot_top = 0;
e6378e1da   Bin Meng   x86: ifdtool: Sup...
1198
  		int offset_uboot_start = 0;
3c7aab23a   Simon Glass   x86: ifdtool: Che...
1199

673ed2f8c   Bin Meng   tools/ifdtool: Su...
1200
  		for (wr_idx = 0; wr_idx < wr_num; wr_idx++) {
65851fcec   Simon Glass   x86: ifdtool: Use...
1201
  			ifile = &input_file[wr_idx];
68af10022   Simon Glass   binman: Drop micr...
1202
1203
1204
  			ret = write_data(image, size, ifile->addr,
  					 ifile->fname, offset_uboot_top,
  					 offset_uboot_start);
31eca6972   Simon Glass   x86: ifdtool: Add...
1205
  			if (ret < 0)
673ed2f8c   Bin Meng   tools/ifdtool: Su...
1206
1207
1208
  				break;
  		}
  	}
cd392fe8a   Simon Glass   x86: Add ifdtool ...
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
  
  	if (mode_spifreq)
  		set_spi_frequency(image, size, spifreq);
  
  	if (mode_em100)
  		set_em100_mode(image, size);
  
  	if (mode_locked)
  		lock_descriptor(image, size);
  
  	if (mode_unlocked)
  		unlock_descriptor(image, size);
  
  	if (write_it) {
  		if (outfile) {
  			ret = write_image(outfile, image, size);
  		} else {
  			if (lseek(bios_fd, 0, SEEK_SET)) {
  				perror("Error while seeking");
  				ret = -1;
  			}
  			if (write(bios_fd, image, size) != size) {
  				perror("Error while writing");
  				ret = -1;
  			}
  		}
  	}
  
  	free(image);
  	close(bios_fd);
31eca6972   Simon Glass   x86: ifdtool: Add...
1239
  	return ret < 0 ? 1 : 0;
cd392fe8a   Simon Glass   x86: Add ifdtool ...
1240
  }