blob: 9cf4a67406ea4b9545a425f1d9d9dbce6d737e69 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Bin Chendac184b2018-01-27 16:59:09 +11002/*
3 * (C) Copyright 2000-2009
4 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
Bin Chendac184b2018-01-27 16:59:09 +11005 */
6
7#include <common.h>
Simon Glass2dc9c342020-05-10 11:40:01 -06008#include <image.h>
Bin Chendac184b2018-01-27 16:59:09 +11009#include <mapmem.h>
10#include <linux/sizes.h>
11
12DECLARE_GLOBAL_DATA_PTR;
13
14#define LINUX_ARM64_IMAGE_MAGIC 0x644d5241
15
16/* See Documentation/arm64/booting.txt in the Linux kernel */
17struct Image_header {
Masahiro Yamada764acb02018-02-13 11:32:15 +090018 uint32_t code0; /* Executable code */
19 uint32_t code1; /* Executable code */
20 uint64_t text_offset; /* Image load offset, LE */
21 uint64_t image_size; /* Effective Image size, LE */
22 uint64_t flags; /* Kernel flags, LE */
23 uint64_t res2; /* reserved */
24 uint64_t res3; /* reserved */
25 uint64_t res4; /* reserved */
26 uint32_t magic; /* Magic number */
27 uint32_t res5;
Bin Chendac184b2018-01-27 16:59:09 +110028};
29
Marek Vasut85ed2892018-06-13 06:13:32 +020030int booti_setup(ulong image, ulong *relocated_addr, ulong *size,
31 bool force_reloc)
Bin Chendac184b2018-01-27 16:59:09 +110032{
Masahiro Yamada764acb02018-02-13 11:32:15 +090033 struct Image_header *ih;
34 uint64_t dst;
35 uint64_t image_size, text_offset;
Bin Chendac184b2018-01-27 16:59:09 +110036
Masahiro Yamada764acb02018-02-13 11:32:15 +090037 *relocated_addr = image;
Bin Chendac184b2018-01-27 16:59:09 +110038
Masahiro Yamada764acb02018-02-13 11:32:15 +090039 ih = (struct Image_header *)map_sysmem(image, 0);
Bin Chendac184b2018-01-27 16:59:09 +110040
Masahiro Yamada764acb02018-02-13 11:32:15 +090041 if (ih->magic != le32_to_cpu(LINUX_ARM64_IMAGE_MAGIC)) {
42 puts("Bad Linux ARM64 Image magic!\n");
43 return 1;
44 }
Bin Chendac184b2018-01-27 16:59:09 +110045
Masahiro Yamada764acb02018-02-13 11:32:15 +090046 /*
47 * Prior to Linux commit a2c1d73b94ed, the text_offset field
48 * is of unknown endianness. In these cases, the image_size
49 * field is zero, and we can assume a fixed value of 0x80000.
50 */
51 if (ih->image_size == 0) {
52 puts("Image lacks image_size field, assuming 16MiB\n");
53 image_size = 16 << 20;
54 text_offset = 0x80000;
55 } else {
56 image_size = le64_to_cpu(ih->image_size);
57 text_offset = le64_to_cpu(ih->text_offset);
58 }
Bin Chendac184b2018-01-27 16:59:09 +110059
Masahiro Yamada764acb02018-02-13 11:32:15 +090060 *size = image_size;
Bin Chendac184b2018-01-27 16:59:09 +110061
Masahiro Yamada764acb02018-02-13 11:32:15 +090062 /*
63 * If bit 3 of the flags field is set, the 2MB aligned base of the
64 * kernel image can be anywhere in physical memory, so respect
65 * images->ep. Otherwise, relocate the image to the base of RAM
66 * since memory below it is not accessible via the linear mapping.
67 */
Marek Vasut85ed2892018-06-13 06:13:32 +020068 if (!force_reloc && (le64_to_cpu(ih->flags) & BIT(3)))
Masahiro Yamada764acb02018-02-13 11:32:15 +090069 dst = image - text_offset;
70 else
71 dst = gd->bd->bi_dram[0].start;
Bin Chendac184b2018-01-27 16:59:09 +110072
Masahiro Yamada764acb02018-02-13 11:32:15 +090073 *relocated_addr = ALIGN(dst, SZ_2M) + text_offset;
Bin Chendac184b2018-01-27 16:59:09 +110074
Masahiro Yamada764acb02018-02-13 11:32:15 +090075 unmap_sysmem(ih);
Bin Chendac184b2018-01-27 16:59:09 +110076
Masahiro Yamada764acb02018-02-13 11:32:15 +090077 return 0;
Bin Chendac184b2018-01-27 16:59:09 +110078}