Blame view

common/image-android.c 20.2 KB
83d290c56   Tom Rini   SPDX: Convert all...
1
  // SPDX-License-Identifier: GPL-2.0+
9ace3fc81   Sebastian Siewior   image: add suppor...
2
3
  /*
   * Copyright (c) 2011 Sebastian Andrzej Siewior <bigeasy@linutronix.de>
a2018ab0d   Ye Li   MLK-18591-3 andro...
4
5
6
   *
   * Copyright (C) 2015-2016 Freescale Semiconductor, Inc.
   * Copyright 2017 NXP
9ace3fc81   Sebastian Siewior   image: add suppor...
7
8
9
   */
  
  #include <common.h>
9fb625ce0   Simon Glass   env: Move env_set...
10
  #include <env.h>
9ace3fc81   Sebastian Siewior   image: add suppor...
11
  #include <image.h>
c3bfad825   Sam Protsenko   image: android: A...
12
  #include <image-android-dt.h>
9ace3fc81   Sebastian Siewior   image: add suppor...
13
  #include <android_image.h>
86f4695bd   Ahmad Draidi   image: Fix Androi...
14
15
  #include <malloc.h>
  #include <errno.h>
829ceb282   Eugeniu Rosca   image: android: a...
16
  #include <asm/unaligned.h>
c3bfad825   Sam Protsenko   image: android: A...
17
  #include <mapmem.h>
a2018ab0d   Ye Li   MLK-18591-3 andro...
18
19
20
21
22
23
  #include <asm/bootm.h>
  #include <asm/mach-imx/boot_mode.h>
  #include <asm/arch/sys_proto.h>
  #include <fb_fsl.h>
  #include <asm/setup.h>
  #include <dm.h>
aadfac253   Ji Luo   MA-14898 Fix buil...
24
  #include <mmc.h>
9ace3fc81   Sebastian Siewior   image: add suppor...
25

87f02d5ae   Maxime Ripard   image: android: h...
26
  #define ANDROID_IMAGE_DEFAULT_KERNEL_ADDR	0x10008000
9ace3fc81   Sebastian Siewior   image: add suppor...
27
  static char andr_tmp_str[ANDR_BOOT_ARGS_SIZE + 1];
87f02d5ae   Maxime Ripard   image: android: h...
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
  static ulong android_image_get_kernel_addr(const struct andr_img_hdr *hdr)
  {
  	/*
  	 * All the Android tools that generate a boot.img use this
  	 * address as the default.
  	 *
  	 * Even though it doesn't really make a lot of sense, and it
  	 * might be valid on some platforms, we treat that adress as
  	 * the default value for this field, and try to execute the
  	 * kernel in place in such a case.
  	 *
  	 * Otherwise, we will return the actual value set by the user.
  	 */
  	if (hdr->kernel_addr == ANDROID_IMAGE_DEFAULT_KERNEL_ADDR)
  		return (ulong)hdr + hdr->page_size;
  
  	return hdr->kernel_addr;
  }
86f4695bd   Ahmad Draidi   image: Fix Androi...
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
  /**
   * android_image_get_kernel() - processes kernel part of Android boot images
   * @hdr:	Pointer to image header, which is at the start
   *			of the image.
   * @verify:	Checksum verification flag. Currently unimplemented.
   * @os_data:	Pointer to a ulong variable, will hold os data start
   *			address.
   * @os_len:	Pointer to a ulong variable, will hold os data length.
   *
   * This function returns the os image's start address and length. Also,
   * it appends the kernel command line to the bootargs env variable.
   *
   * Return: Zero, os start address and length on success,
   *		otherwise on failure.
   */
9ace3fc81   Sebastian Siewior   image: add suppor...
61
62
63
  int android_image_get_kernel(const struct andr_img_hdr *hdr, int verify,
  			     ulong *os_data, ulong *os_len)
  {
a2018ab0d   Ye Li   MLK-18591-3 andro...
64
  	extern boot_metric metrics;
87f02d5ae   Maxime Ripard   image: android: h...
65
  	u32 kernel_addr = android_image_get_kernel_addr(hdr);
39f790b03   Roman Stratiienko   image: android: a...
66
67
  	const struct image_header *ihdr = (const struct image_header *)
  		((uintptr_t)hdr + hdr->page_size);
87f02d5ae   Maxime Ripard   image: android: h...
68

9ace3fc81   Sebastian Siewior   image: add suppor...
69
70
71
72
73
74
75
76
77
78
79
80
81
  	/*
  	 * Not all Android tools use the id field for signing the image with
  	 * sha1 (or anything) so we don't check it. It is not obvious that the
  	 * string is null terminated so we take care of this.
  	 */
  	strncpy(andr_tmp_str, hdr->name, ANDR_BOOT_NAME_SIZE);
  	andr_tmp_str[ANDR_BOOT_NAME_SIZE] = '\0';
  	if (strlen(andr_tmp_str))
  		printf("Android's image name: %s
  ", andr_tmp_str);
  
  	printf("Kernel load addr 0x%08x size %u KiB
  ",
87f02d5ae   Maxime Ripard   image: android: h...
82
  	       kernel_addr, DIV_ROUND_UP(hdr->kernel_size, 1024));
86f4695bd   Ahmad Draidi   image: Fix Androi...
83

a2018ab0d   Ye Li   MLK-18591-3 andro...
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
  	char newbootargs[512] = {0};
  	char commandline[2048] = {0};
  	int offset;
  	char *bootargs = env_get("bootargs");
  
  	if (bootargs) {
  		if (strlen(bootargs) + 1 > sizeof(commandline)) {
  			printf("bootargs is too long!
  ");
  			return -1;
  		}
  		else
  			strncpy(commandline, bootargs, sizeof(commandline) - 1);
  	} else {
  		offset = fdt_path_offset(gd->fdt_blob, "/chosen");
  		if (offset > 0) {
  			bootargs = (char *)fdt_getprop(gd->fdt_blob, offset,
  							"bootargs", NULL);
  			if (bootargs)
  				sprintf(commandline, "%s ", bootargs);
  		}
  
  		if (*hdr->cmdline) {
  			if (strlen(hdr->cmdline) + 1 >
  				sizeof(commandline) - strlen(commandline)) {
  				printf("cmdline in bootimg is too long!
  ");
  				return -1;
  			}
  			else
  				strncat(commandline, hdr->cmdline, sizeof(commandline) - strlen(commandline));
  		}
86f4695bd   Ahmad Draidi   image: Fix Androi...
116
  	}
a2018ab0d   Ye Li   MLK-18591-3 andro...
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
  	/* Add 'bootargs_ram_capacity' to hold the parameters based on different ram capacity */
  	char *bootargs_ram_capacity = env_get("bootargs_ram_capacity");
  	if (bootargs_ram_capacity) {
  		strncat(commandline, " ", sizeof(commandline) - strlen(commandline));
  		strncat(commandline, bootargs_ram_capacity,
  			sizeof(commandline) - strlen(commandline));
  	}
  
  #ifdef CONFIG_SERIAL_TAG
  	struct tag_serialnr serialnr;
  	get_board_serial(&serialnr);
  
  	sprintf(newbootargs,
  					" androidboot.serialno=%08x%08x",
  					serialnr.high,
  					serialnr.low);
  	strncat(commandline, newbootargs, sizeof(commandline) - strlen(commandline));
46d8bccb1   yang.tian   MA-15082 Do not p...
134
135
136
137
138
139
140
141
142
143
144
145
  	if (serialnr.high + serialnr.low != 0) {
  		char bd_addr[16]={0};
  		sprintf(bd_addr,
  			"%08x%08x",
  			serialnr.high,
  			serialnr.low);
  		sprintf(newbootargs,
  			" androidboot.btmacaddr=%c%c:%c%c:%c%c:%c%c:%c%c:%c%c",
  			bd_addr[0],bd_addr[1],bd_addr[2],bd_addr[3],bd_addr[4],bd_addr[5],
  			bd_addr[6],bd_addr[7],bd_addr[8],bd_addr[9],bd_addr[10],bd_addr[11]);
  		strncat(commandline, newbootargs, sizeof(commandline) - strlen(commandline));
  	}
a2018ab0d   Ye Li   MLK-18591-3 andro...
146
  #endif
86f4695bd   Ahmad Draidi   image: Fix Androi...
147

a2018ab0d   Ye Li   MLK-18591-3 andro...
148
149
150
151
152
153
154
  	/* append soc type into bootargs */
  	char *soc_type = env_get("soc_type");
  	if (soc_type) {
  		sprintf(newbootargs,
  			" androidboot.soc_type=%s",
  			soc_type);
  		strncat(commandline, newbootargs, sizeof(commandline) - strlen(commandline));
86f4695bd   Ahmad Draidi   image: Fix Androi...
155
  	}
86f4695bd   Ahmad Draidi   image: Fix Androi...
156

5f9e35bae   Jindong   MA-14712 change a...
157
158
159
  	sprintf(newbootargs,
  			" androidboot.boot_device_root=mmcblk%d", mmc_map_to_kernel_blk(mmc_get_env_dev()));
  	strncat(commandline, newbootargs, sizeof(commandline) - strlen(commandline));
a2018ab0d   Ye Li   MLK-18591-3 andro...
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
  	/* boot metric variables */
  	metrics.ble_1 = get_timer(0);
  	sprintf(newbootargs,
  		" androidboot.boottime=1BLL:%d,1BLE:%d,KL:%d,KD:%d,AVB:%d,ODT:%d,SW:%d",
  		metrics.bll_1, metrics.ble_1, metrics.kl, metrics.kd, metrics.avb,
  		metrics.odt, metrics.sw);
  	strncat(commandline, newbootargs, sizeof(commandline) - strlen(commandline));
  
  #if defined(CONFIG_ARCH_MX6) || defined(CONFIG_ARCH_MX7) || \
  	defined(CONFIG_ARCH_MX7ULP) || defined(CONFIG_ARCH_IMX8M)
  	char cause[18];
  
  	memset(cause, '\0', sizeof(cause));
  	get_reboot_reason(cause);
  	if (strstr(cause, "POR"))
  		sprintf(newbootargs," androidboot.bootreason=cold,powerkey");
  	else if (strstr(cause, "WDOG") || strstr(cause, "WDG"))
  		sprintf(newbootargs," androidboot.bootreason=watchdog");
  	else
  		sprintf(newbootargs," androidboot.bootreason=reboot");
  #else
  	sprintf(newbootargs," androidboot.bootreason=reboot");
  #endif
  	strncat(commandline, newbootargs, sizeof(commandline) - strlen(commandline));
  
  #ifdef CONFIG_AVB_SUPPORT
  	/* secondary cmdline added by avb */
  	char *bootargs_sec = env_get("bootargs_sec");
  	if (bootargs_sec) {
  		strncat(commandline, " ", sizeof(commandline) - strlen(commandline));
  		strncat(commandline, bootargs_sec, sizeof(commandline) - strlen(commandline));
  	}
  #endif
  #ifdef CONFIG_SYSTEM_RAMDISK_SUPPORT
  	/* Normal boot:
  	 * cmdline to bypass ramdisk in boot.img, but use the system.img
  	 * Recovery boot:
  	 * Use the ramdisk in boot.img
  	 */
  	char *bootargs_3rd = env_get("bootargs_3rd");
  	if (bootargs_3rd) {
  		strncat(commandline, " ", sizeof(commandline) - strlen(commandline));
  		strncat(commandline, bootargs_3rd, sizeof(commandline) - strlen(commandline));
  	}
  #endif
  
  	/* VTS need this commandline to verify fdt overlay. Pass the
  	 * dtb index as "0" here since we only have one dtb in dtbo
  	 * partition and haven't enabled the dtb overlay.
  	 */
  #if defined(CONFIG_ANDROID_SUPPORT) || defined(CONFIG_ANDROID_AUTO_SUPPORT)
  	sprintf(newbootargs," androidboot.dtbo_idx=0");
  	strncat(commandline, newbootargs, sizeof(commandline) - strlen(commandline));
  #endif
  
  	char *keystore = env_get("keystore");
  	if ((keystore == NULL) || strncmp(keystore, "trusty", sizeof("trusty"))) {
  		char *bootargs_trusty = "androidboot.keystore=software";
  		strncat(commandline, " ", sizeof(commandline) - strlen(commandline));
  		strncat(commandline, bootargs_trusty, sizeof(commandline) - strlen(commandline));
  	} else {
  		char *bootargs_trusty = "androidboot.keystore=trusty";
  		strncat(commandline, " ", sizeof(commandline) - strlen(commandline));
  		strncat(commandline, bootargs_trusty, sizeof(commandline) - strlen(commandline));
  	}
  
  #ifdef CONFIG_APPEND_BOOTARGS
  	/* Add 'append_bootargs' to hold some paramemters which need to be appended
  	 * to bootargs */
  	char *append_bootargs = env_get("append_bootargs");
  	if (append_bootargs) {
  		if (strlen(append_bootargs) + 2 >
  				(sizeof(commandline) - strlen(commandline))) {
  			printf("The 'append_bootargs' is too long to be appended to bootargs
  ");
  		} else {
  			strncat(commandline, " ", sizeof(commandline) - strlen(commandline));
  			strncat(commandline, append_bootargs, sizeof(commandline) - strlen(commandline));
  		}
  	}
  #endif
  
  	debug("Kernel command line: %s
  ", commandline);
  	env_set("bootargs", commandline);
9ace3fc81   Sebastian Siewior   image: add suppor...
245
246
  
  	if (os_data) {
39f790b03   Roman Stratiienko   image: android: a...
247
248
249
250
251
252
253
254
255
256
257
258
  		if (image_get_magic(ihdr) == IH_MAGIC) {
  			*os_data = image_get_data(ihdr);
  		} else {
  			*os_data = (ulong)hdr;
  			*os_data += hdr->page_size;
  		}
  	}
  	if (os_len) {
  		if (image_get_magic(ihdr) == IH_MAGIC)
  			*os_len = image_get_data_size(ihdr);
  		else
  			*os_len = hdr->kernel_size;
9ace3fc81   Sebastian Siewior   image: add suppor...
259
  	}
9ace3fc81   Sebastian Siewior   image: add suppor...
260
261
262
263
264
265
266
267
268
269
  	return 0;
  }
  
  int android_image_check_header(const struct andr_img_hdr *hdr)
  {
  	return memcmp(ANDR_BOOT_MAGIC, hdr->magic, ANDR_BOOT_MAGIC_SIZE);
  }
  
  ulong android_image_get_end(const struct andr_img_hdr *hdr)
  {
86f4695bd   Ahmad Draidi   image: Fix Androi...
270
  	ulong end;
bb63363f2   Sam Protsenko   image: android: S...
271

9ace3fc81   Sebastian Siewior   image: add suppor...
272
273
274
275
  	/*
  	 * The header takes a full page, the remaining components are aligned
  	 * on page boundary
  	 */
86f4695bd   Ahmad Draidi   image: Fix Androi...
276
277
278
279
280
  	end = (ulong)hdr;
  	end += hdr->page_size;
  	end += ALIGN(hdr->kernel_size, hdr->page_size);
  	end += ALIGN(hdr->ramdisk_size, hdr->page_size);
  	end += ALIGN(hdr->second_size, hdr->page_size);
9ace3fc81   Sebastian Siewior   image: add suppor...
281

bb63363f2   Sam Protsenko   image: android: S...
282
283
284
285
286
  	if (hdr->header_version >= 1)
  		end += ALIGN(hdr->recovery_dtbo_size, hdr->page_size);
  
  	if (hdr->header_version >= 2)
  		end += ALIGN(hdr->dtb_size, hdr->page_size);
86f4695bd   Ahmad Draidi   image: Fix Androi...
287
  	return end;
9ace3fc81   Sebastian Siewior   image: add suppor...
288
289
290
291
  }
  
  ulong android_image_get_kload(const struct andr_img_hdr *hdr)
  {
87f02d5ae   Maxime Ripard   image: android: h...
292
  	return android_image_get_kernel_addr(hdr);
9ace3fc81   Sebastian Siewior   image: add suppor...
293
  }
829ceb282   Eugeniu Rosca   image: android: a...
294
295
296
  ulong android_image_get_kcomp(const struct andr_img_hdr *hdr)
  {
  	const void *p = (void *)((uintptr_t)hdr + hdr->page_size);
39f790b03   Roman Stratiienko   image: android: a...
297
298
299
  	if (image_get_magic((image_header_t *)p) == IH_MAGIC)
  		return image_get_comp((image_header_t *)p);
  	else if (get_unaligned_le32(p) == LZ4F_MAGIC)
829ceb282   Eugeniu Rosca   image: android: a...
300
301
302
303
  		return IH_COMP_LZ4;
  	else
  		return IH_COMP_NONE;
  }
9ace3fc81   Sebastian Siewior   image: add suppor...
304
305
306
  int android_image_get_ramdisk(const struct andr_img_hdr *hdr,
  			      ulong *rd_data, ulong *rd_len)
  {
9950098e3   Rob Herring   image: fix suppor...
307
308
  	if (!hdr->ramdisk_size) {
  		*rd_data = *rd_len = 0;
9ace3fc81   Sebastian Siewior   image: add suppor...
309
  		return -1;
9950098e3   Rob Herring   image: fix suppor...
310
  	}
86f4695bd   Ahmad Draidi   image: Fix Androi...
311
312
313
314
  
  	printf("RAM disk load addr 0x%08x size %u KiB
  ",
  	       hdr->ramdisk_addr, DIV_ROUND_UP(hdr->ramdisk_size, 1024));
9ace3fc81   Sebastian Siewior   image: add suppor...
315
316
317
318
319
320
321
  	*rd_data = (unsigned long)hdr;
  	*rd_data += hdr->page_size;
  	*rd_data += ALIGN(hdr->kernel_size, hdr->page_size);
  
  	*rd_len = hdr->ramdisk_size;
  	return 0;
  }
4f1318b29   Michael Trimarchi   common: image: mi...
322

104816142   Bin Chen   parse the second ...
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
  int android_image_get_second(const struct andr_img_hdr *hdr,
  			      ulong *second_data, ulong *second_len)
  {
  	if (!hdr->second_size) {
  		*second_data = *second_len = 0;
  		return -1;
  	}
  
  	*second_data = (unsigned long)hdr;
  	*second_data += hdr->page_size;
  	*second_data += ALIGN(hdr->kernel_size, hdr->page_size);
  	*second_data += ALIGN(hdr->ramdisk_size, hdr->page_size);
  
  	printf("second address is 0x%lx
  ",*second_data);
  
  	*second_len = hdr->second_size;
  	return 0;
  }
c3bfad825   Sam Protsenko   image: android: A...
342
  /**
7f2531502   Sam Protsenko   image: android: A...
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
   * android_image_get_dtbo() - Get address and size of recovery DTBO image.
   * @hdr_addr: Boot image header address
   * @addr: If not NULL, will contain address of recovery DTBO image
   * @size: If not NULL, will contain size of recovery DTBO image
   *
   * Get the address and size of DTBO image in "Recovery DTBO" area of Android
   * Boot Image in RAM. The format of this image is Android DTBO (see
   * corresponding "DTB/DTBO Partitions" AOSP documentation for details). Once
   * the address is obtained from this function, one can use 'adtimg' U-Boot
   * command or android_dt_*() functions to extract desired DTBO blob.
   *
   * This DTBO (included in boot image) is only needed for non-A/B devices, and it
   * only can be found in recovery image. On A/B devices we can always rely on
   * "dtbo" partition. See "Including DTBO in Recovery for Non-A/B Devices" in
   * AOSP documentation for details.
   *
   * Return: true on success or false on error.
   */
  bool android_image_get_dtbo(ulong hdr_addr, ulong *addr, u32 *size)
  {
  	const struct andr_img_hdr *hdr;
  	ulong dtbo_img_addr;
  	bool ret = true;
  
  	hdr = map_sysmem(hdr_addr, sizeof(*hdr));
  	if (android_image_check_header(hdr)) {
  		printf("Error: Boot Image header is incorrect
  ");
  		ret = false;
  		goto exit;
  	}
  
  	if (hdr->header_version < 1) {
  		printf("Error: header_version must be >= 1 to get dtbo
  ");
  		ret = false;
  		goto exit;
  	}
  
  	if (hdr->recovery_dtbo_size == 0) {
  		printf("Error: recovery_dtbo_size is 0
  ");
  		ret = false;
  		goto exit;
  	}
  
  	/* Calculate the address of DTB area in boot image */
  	dtbo_img_addr = hdr_addr;
  	dtbo_img_addr += hdr->page_size;
  	dtbo_img_addr += ALIGN(hdr->kernel_size, hdr->page_size);
  	dtbo_img_addr += ALIGN(hdr->ramdisk_size, hdr->page_size);
  	dtbo_img_addr += ALIGN(hdr->second_size, hdr->page_size);
  
  	if (addr)
  		*addr = dtbo_img_addr;
  	if (size)
  		*size = hdr->recovery_dtbo_size;
  
  exit:
  	unmap_sysmem(hdr);
  	return ret;
  }
  
  /**
c3bfad825   Sam Protsenko   image: android: A...
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
   * android_image_get_dtb_img_addr() - Get the address of DTB area in boot image.
   * @hdr_addr: Boot image header address
   * @addr: Will contain the address of DTB area in boot image
   *
   * Return: true on success or false on fail.
   */
  static bool android_image_get_dtb_img_addr(ulong hdr_addr, ulong *addr)
  {
  	const struct andr_img_hdr *hdr;
  	ulong dtb_img_addr;
  	bool ret = true;
  
  	hdr = map_sysmem(hdr_addr, sizeof(*hdr));
  	if (android_image_check_header(hdr)) {
  		printf("Error: Boot Image header is incorrect
  ");
  		ret = false;
  		goto exit;
  	}
  
  	if (hdr->header_version < 2) {
  		printf("Error: header_version must be >= 2 to get dtb
  ");
  		ret = false;
  		goto exit;
  	}
  
  	if (hdr->dtb_size == 0) {
  		printf("Error: dtb_size is 0
  ");
  		ret = false;
  		goto exit;
  	}
  
  	/* Calculate the address of DTB area in boot image */
  	dtb_img_addr = hdr_addr;
  	dtb_img_addr += hdr->page_size;
  	dtb_img_addr += ALIGN(hdr->kernel_size, hdr->page_size);
  	dtb_img_addr += ALIGN(hdr->ramdisk_size, hdr->page_size);
  	dtb_img_addr += ALIGN(hdr->second_size, hdr->page_size);
  	dtb_img_addr += ALIGN(hdr->recovery_dtbo_size, hdr->page_size);
  
  	*addr = dtb_img_addr;
  
  exit:
  	unmap_sysmem(hdr);
  	return ret;
  }
  
  /**
   * android_image_get_dtb_by_index() - Get address and size of blob in DTB area.
   * @hdr_addr: Boot image header address
   * @index: Index of desired DTB in DTB area (starting from 0)
   * @addr: If not NULL, will contain address to specified DTB
   * @size: If not NULL, will contain size of specified DTB
   *
   * Get the address and size of DTB blob by its index in DTB area of Android
   * Boot Image in RAM.
   *
   * Return: true on success or false on error.
   */
  bool android_image_get_dtb_by_index(ulong hdr_addr, u32 index, ulong *addr,
  				    u32 *size)
  {
  	const struct andr_img_hdr *hdr;
  	bool res;
  	ulong dtb_img_addr;	/* address of DTB part in boot image */
  	u32 dtb_img_size;	/* size of DTB payload in boot image */
  	ulong dtb_addr;		/* address of DTB blob with specified index  */
  	u32 i;			/* index iterator */
  
  	res = android_image_get_dtb_img_addr(hdr_addr, &dtb_img_addr);
  	if (!res)
  		return false;
  
  	/* Check if DTB area of boot image is in DTBO format */
  	if (android_dt_check_header(dtb_img_addr)) {
  		return android_dt_get_fdt_by_index(dtb_img_addr, index, addr,
  						   size);
  	}
  
  	/* Find out the address of DTB with specified index in concat blobs */
  	hdr = map_sysmem(hdr_addr, sizeof(*hdr));
  	dtb_img_size = hdr->dtb_size;
  	unmap_sysmem(hdr);
  	i = 0;
  	dtb_addr = dtb_img_addr;
  	while (dtb_addr < dtb_img_addr + dtb_img_size) {
  		const struct fdt_header *fdt;
  		u32 dtb_size;
  
  		fdt = map_sysmem(dtb_addr, sizeof(*fdt));
  		if (fdt_check_header(fdt) != 0) {
  			unmap_sysmem(fdt);
  			printf("Error: Invalid FDT header for index %u
  ", i);
  			return false;
  		}
  
  		dtb_size = fdt_totalsize(fdt);
  		unmap_sysmem(fdt);
  
  		if (i == index) {
  			if (size)
  				*size = dtb_size;
  			if (addr)
  				*addr = dtb_addr;
  			return true;
  		}
  
  		dtb_addr += dtb_size;
  		++i;
  	}
  
  	printf("Error: Index is out of bounds (%u/%u)
  ", index, i);
  	return false;
  }
4f1318b29   Michael Trimarchi   common: image: mi...
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
  #if !defined(CONFIG_SPL_BUILD)
  /**
   * android_print_contents - prints out the contents of the Android format image
   * @hdr: pointer to the Android format image header
   *
   * android_print_contents() formats a multi line Android image contents
   * description.
   * The routine prints out Android image properties
   *
   * returns:
   *     no returned results
   */
  void android_print_contents(const struct andr_img_hdr *hdr)
  {
  	const char * const p = IMAGE_INDENT_STRING;
210a7176e   Alex Deymo   image: Update inc...
540
541
542
  	/* os_version = ver << 11 | lvl */
  	u32 os_ver = hdr->os_version >> 11;
  	u32 os_lvl = hdr->os_version & ((1U << 11) - 1);
4f1318b29   Michael Trimarchi   common: image: mi...
543

bb63363f2   Sam Protsenko   image: android: S...
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
  	printf("%skernel size:          %x
  ", p, hdr->kernel_size);
  	printf("%skernel address:       %x
  ", p, hdr->kernel_addr);
  	printf("%sramdisk size:         %x
  ", p, hdr->ramdisk_size);
  	printf("%sramdisk address:      %x
  ", p, hdr->ramdisk_addr);
  	printf("%ssecond size:          %x
  ", p, hdr->second_size);
  	printf("%ssecond address:       %x
  ", p, hdr->second_addr);
  	printf("%stags address:         %x
  ", p, hdr->tags_addr);
  	printf("%spage size:            %x
  ", p, hdr->page_size);
210a7176e   Alex Deymo   image: Update inc...
560
561
  	/* ver = A << 14 | B << 7 | C         (7 bits for each of A, B, C)
  	 * lvl = ((Y - 2000) & 127) << 4 | M  (7 bits for Y, 4 bits for M) */
bb63363f2   Sam Protsenko   image: android: S...
562
563
  	printf("%sos_version:           %x (ver: %u.%u.%u, level: %u.%u)
  ",
210a7176e   Alex Deymo   image: Update inc...
564
565
566
  	       p, hdr->os_version,
  	       (os_ver >> 7) & 0x7F, (os_ver >> 14) & 0x7F, os_ver & 0x7F,
  	       (os_lvl >> 4) + 2000, os_lvl & 0x0F);
bb63363f2   Sam Protsenko   image: android: S...
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
  	printf("%sname:                 %s
  ", p, hdr->name);
  	printf("%scmdline:              %s
  ", p, hdr->cmdline);
  	printf("%sheader_version:       %d
  ", p, hdr->header_version);
  
  	if (hdr->header_version >= 1) {
  		printf("%srecovery dtbo size:   %x
  ", p,
  		       hdr->recovery_dtbo_size);
  		printf("%srecovery dtbo offset: %llx
  ", p,
  		       hdr->recovery_dtbo_offset);
  		printf("%sheader size:          %x
  ", p,
  		       hdr->header_size);
  	}
  
  	if (hdr->header_version >= 2) {
  		printf("%sdtb size:             %x
  ", p, hdr->dtb_size);
  		printf("%sdtb addr:             %llx
  ", p, hdr->dtb_addr);
  	}
4f1318b29   Michael Trimarchi   common: image: mi...
592
  }
c3bfad825   Sam Protsenko   image: android: A...
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
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
  
  /**
   * android_image_print_dtb_info - Print info for one DTB blob in DTB area.
   * @fdt: DTB header
   * @index: Number of DTB blob in DTB area.
   *
   * Return: true on success or false on error.
   */
  static bool android_image_print_dtb_info(const struct fdt_header *fdt,
  					 u32 index)
  {
  	int root_node_off;
  	u32 fdt_size;
  	const char *model;
  	const char *compatible;
  
  	root_node_off = fdt_path_offset(fdt, "/");
  	if (root_node_off < 0) {
  		printf("Error: Root node not found
  ");
  		return false;
  	}
  
  	fdt_size = fdt_totalsize(fdt);
  	compatible = fdt_getprop(fdt, root_node_off, "compatible",
  				 NULL);
  	model = fdt_getprop(fdt, root_node_off, "model", NULL);
  
  	printf(" - DTB #%u:
  ", index);
  	printf("           (DTB)size = %d
  ", fdt_size);
  	printf("          (DTB)model = %s
  ", model ? model : "(unknown)");
  	printf("     (DTB)compatible = %s
  ",
  	       compatible ? compatible : "(unknown)");
  
  	return true;
  }
  
  /**
   * android_image_print_dtb_contents() - Print info for DTB blobs in DTB area.
   * @hdr_addr: Boot image header address
   *
   * DTB payload in Android Boot Image v2+ can be in one of following formats:
   *   1. Concatenated DTB blobs
   *   2. Android DTBO format (see CONFIG_CMD_ADTIMG for details)
   *
   * This function does next:
   *   1. Prints out the format used in DTB area
   *   2. Iterates over all DTB blobs in DTB area and prints out the info for
   *      each blob.
   *
   * Return: true on success or false on error.
   */
  bool android_image_print_dtb_contents(ulong hdr_addr)
  {
  	const struct andr_img_hdr *hdr;
  	bool res;
  	ulong dtb_img_addr;	/* address of DTB part in boot image */
  	u32 dtb_img_size;	/* size of DTB payload in boot image */
  	ulong dtb_addr;		/* address of DTB blob with specified index  */
  	u32 i;			/* index iterator */
  
  	res = android_image_get_dtb_img_addr(hdr_addr, &dtb_img_addr);
  	if (!res)
  		return false;
  
  	/* Check if DTB area of boot image is in DTBO format */
  	if (android_dt_check_header(dtb_img_addr)) {
  		printf("## DTB area contents (DTBO format):
  ");
  		android_dt_print_contents(dtb_img_addr);
  		return true;
  	}
  
  	printf("## DTB area contents (concat format):
  ");
  
  	/* Iterate over concatenated DTB blobs */
  	hdr = map_sysmem(hdr_addr, sizeof(*hdr));
  	dtb_img_size = hdr->dtb_size;
  	unmap_sysmem(hdr);
  	i = 0;
  	dtb_addr = dtb_img_addr;
  	while (dtb_addr < dtb_img_addr + dtb_img_size) {
  		const struct fdt_header *fdt;
  		u32 dtb_size;
  
  		fdt = map_sysmem(dtb_addr, sizeof(*fdt));
  		if (fdt_check_header(fdt) != 0) {
  			unmap_sysmem(fdt);
  			printf("Error: Invalid FDT header for index %u
  ", i);
  			return false;
  		}
  
  		res = android_image_print_dtb_info(fdt, i);
  		if (!res) {
  			unmap_sysmem(fdt);
  			return false;
  		}
  
  		dtb_size = fdt_totalsize(fdt);
  		unmap_sysmem(fdt);
  		dtb_addr += dtb_size;
  		++i;
  	}
  
  	return true;
  }
4f1318b29   Michael Trimarchi   common: image: mi...
705
  #endif
a2018ab0d   Ye Li   MLK-18591-3 andro...
706
707
708
709
710
711
712
713
714
715
716
717
718
  
  #define ARM64_IMAGE_MAGIC	0x644d5241
  bool image_arm64(void *images)
  {
  	struct header_image *ih;
  
  	ih = (struct header_image *)images;
  	debug("image magic: %x
  ", ih->magic);
  	if (ih->magic == le32_to_cpu(ARM64_IMAGE_MAGIC))
  		return true;
  	return false;
  }