blob: 94590d3049ad197a3fc8193d4ddaa4d3920e3927 [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>
Simon Glass4dcacfc2020-05-10 11:40:13 -060010#include <linux/bitops.h>
Bin Chendac184b2018-01-27 16:59:09 +110011#include <linux/sizes.h>
12
13DECLARE_GLOBAL_DATA_PTR;
14
15#define LINUX_ARM64_IMAGE_MAGIC 0x644d5241
16
17/* See Documentation/arm64/booting.txt in the Linux kernel */
18struct Image_header {
Masahiro Yamada764acb02018-02-13 11:32:15 +090019 uint32_t code0; /* Executable code */
20 uint32_t code1; /* Executable code */
21 uint64_t text_offset; /* Image load offset, LE */
22 uint64_t image_size; /* Effective Image size, LE */
23 uint64_t flags; /* Kernel flags, LE */
24 uint64_t res2; /* reserved */
25 uint64_t res3; /* reserved */
26 uint64_t res4; /* reserved */
27 uint32_t magic; /* Magic number */
28 uint32_t res5;
Bin Chendac184b2018-01-27 16:59:09 +110029};
30
Marek Vasut85ed2892018-06-13 06:13:32 +020031int booti_setup(ulong image, ulong *relocated_addr, ulong *size,
32 bool force_reloc)
Bin Chendac184b2018-01-27 16:59:09 +110033{
Masahiro Yamada764acb02018-02-13 11:32:15 +090034 struct Image_header *ih;
35 uint64_t dst;
36 uint64_t image_size, text_offset;
Bin Chendac184b2018-01-27 16:59:09 +110037
Masahiro Yamada764acb02018-02-13 11:32:15 +090038 *relocated_addr = image;
Bin Chendac184b2018-01-27 16:59:09 +110039
Masahiro Yamada764acb02018-02-13 11:32:15 +090040 ih = (struct Image_header *)map_sysmem(image, 0);
Bin Chendac184b2018-01-27 16:59:09 +110041
Masahiro Yamada764acb02018-02-13 11:32:15 +090042 if (ih->magic != le32_to_cpu(LINUX_ARM64_IMAGE_MAGIC)) {
43 puts("Bad Linux ARM64 Image magic!\n");
44 return 1;
45 }
Bin Chendac184b2018-01-27 16:59:09 +110046
Masahiro Yamada764acb02018-02-13 11:32:15 +090047 /*
48 * Prior to Linux commit a2c1d73b94ed, the text_offset field
49 * is of unknown endianness. In these cases, the image_size
50 * field is zero, and we can assume a fixed value of 0x80000.
51 */
52 if (ih->image_size == 0) {
53 puts("Image lacks image_size field, assuming 16MiB\n");
54 image_size = 16 << 20;
55 text_offset = 0x80000;
56 } else {
57 image_size = le64_to_cpu(ih->image_size);
58 text_offset = le64_to_cpu(ih->text_offset);
59 }
Bin Chendac184b2018-01-27 16:59:09 +110060
Masahiro Yamada764acb02018-02-13 11:32:15 +090061 *size = image_size;
Bin Chendac184b2018-01-27 16:59:09 +110062
Masahiro Yamada764acb02018-02-13 11:32:15 +090063 /*
64 * If bit 3 of the flags field is set, the 2MB aligned base of the
65 * kernel image can be anywhere in physical memory, so respect
66 * images->ep. Otherwise, relocate the image to the base of RAM
67 * since memory below it is not accessible via the linear mapping.
68 */
Marek Vasut85ed2892018-06-13 06:13:32 +020069 if (!force_reloc && (le64_to_cpu(ih->flags) & BIT(3)))
Masahiro Yamada764acb02018-02-13 11:32:15 +090070 dst = image - text_offset;
71 else
72 dst = gd->bd->bi_dram[0].start;
Bin Chendac184b2018-01-27 16:59:09 +110073
Masahiro Yamada764acb02018-02-13 11:32:15 +090074 *relocated_addr = ALIGN(dst, SZ_2M) + text_offset;
Bin Chendac184b2018-01-27 16:59:09 +110075
Masahiro Yamada764acb02018-02-13 11:32:15 +090076 unmap_sysmem(ih);
Bin Chendac184b2018-01-27 16:59:09 +110077
Masahiro Yamada764acb02018-02-13 11:32:15 +090078 return 0;
Bin Chendac184b2018-01-27 16:59:09 +110079}