Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Bin Chen | 6808ef9 | 2018-01-27 16:59:09 +1100 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2000-2009 |
| 4 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
Bin Chen | 6808ef9 | 2018-01-27 16:59:09 +1100 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include <common.h> |
Simon Glass | 4d72caa | 2020-05-10 11:40:01 -0600 | [diff] [blame] | 8 | #include <image.h> |
Bin Chen | 6808ef9 | 2018-01-27 16:59:09 +1100 | [diff] [blame] | 9 | #include <mapmem.h> |
Simon Glass | 401d1c4 | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 10 | #include <asm/global_data.h> |
Simon Glass | cd93d62 | 2020-05-10 11:40:13 -0600 | [diff] [blame] | 11 | #include <linux/bitops.h> |
Bin Chen | 6808ef9 | 2018-01-27 16:59:09 +1100 | [diff] [blame] | 12 | #include <linux/sizes.h> |
| 13 | |
| 14 | DECLARE_GLOBAL_DATA_PTR; |
| 15 | |
| 16 | #define LINUX_ARM64_IMAGE_MAGIC 0x644d5241 |
| 17 | |
| 18 | /* See Documentation/arm64/booting.txt in the Linux kernel */ |
| 19 | struct Image_header { |
Masahiro Yamada | 6becd9d | 2018-02-13 11:32:15 +0900 | [diff] [blame] | 20 | uint32_t code0; /* Executable code */ |
| 21 | uint32_t code1; /* Executable code */ |
| 22 | uint64_t text_offset; /* Image load offset, LE */ |
| 23 | uint64_t image_size; /* Effective Image size, LE */ |
| 24 | uint64_t flags; /* Kernel flags, LE */ |
| 25 | uint64_t res2; /* reserved */ |
| 26 | uint64_t res3; /* reserved */ |
| 27 | uint64_t res4; /* reserved */ |
| 28 | uint32_t magic; /* Magic number */ |
| 29 | uint32_t res5; |
Bin Chen | 6808ef9 | 2018-01-27 16:59:09 +1100 | [diff] [blame] | 30 | }; |
| 31 | |
Marek Vasut | 7f13b37 | 2018-06-13 06:13:32 +0200 | [diff] [blame] | 32 | int booti_setup(ulong image, ulong *relocated_addr, ulong *size, |
| 33 | bool force_reloc) |
Bin Chen | 6808ef9 | 2018-01-27 16:59:09 +1100 | [diff] [blame] | 34 | { |
Masahiro Yamada | 6becd9d | 2018-02-13 11:32:15 +0900 | [diff] [blame] | 35 | struct Image_header *ih; |
| 36 | uint64_t dst; |
| 37 | uint64_t image_size, text_offset; |
Bin Chen | 6808ef9 | 2018-01-27 16:59:09 +1100 | [diff] [blame] | 38 | |
Masahiro Yamada | 6becd9d | 2018-02-13 11:32:15 +0900 | [diff] [blame] | 39 | *relocated_addr = image; |
Bin Chen | 6808ef9 | 2018-01-27 16:59:09 +1100 | [diff] [blame] | 40 | |
Masahiro Yamada | 6becd9d | 2018-02-13 11:32:15 +0900 | [diff] [blame] | 41 | ih = (struct Image_header *)map_sysmem(image, 0); |
Bin Chen | 6808ef9 | 2018-01-27 16:59:09 +1100 | [diff] [blame] | 42 | |
Masahiro Yamada | 6becd9d | 2018-02-13 11:32:15 +0900 | [diff] [blame] | 43 | if (ih->magic != le32_to_cpu(LINUX_ARM64_IMAGE_MAGIC)) { |
| 44 | puts("Bad Linux ARM64 Image magic!\n"); |
| 45 | return 1; |
| 46 | } |
Bin Chen | 6808ef9 | 2018-01-27 16:59:09 +1100 | [diff] [blame] | 47 | |
Masahiro Yamada | 6becd9d | 2018-02-13 11:32:15 +0900 | [diff] [blame] | 48 | /* |
| 49 | * Prior to Linux commit a2c1d73b94ed, the text_offset field |
| 50 | * is of unknown endianness. In these cases, the image_size |
| 51 | * field is zero, and we can assume a fixed value of 0x80000. |
| 52 | */ |
| 53 | if (ih->image_size == 0) { |
| 54 | puts("Image lacks image_size field, assuming 16MiB\n"); |
| 55 | image_size = 16 << 20; |
| 56 | text_offset = 0x80000; |
| 57 | } else { |
| 58 | image_size = le64_to_cpu(ih->image_size); |
| 59 | text_offset = le64_to_cpu(ih->text_offset); |
| 60 | } |
Bin Chen | 6808ef9 | 2018-01-27 16:59:09 +1100 | [diff] [blame] | 61 | |
Masahiro Yamada | 6becd9d | 2018-02-13 11:32:15 +0900 | [diff] [blame] | 62 | *size = image_size; |
Bin Chen | 6808ef9 | 2018-01-27 16:59:09 +1100 | [diff] [blame] | 63 | |
Masahiro Yamada | 6becd9d | 2018-02-13 11:32:15 +0900 | [diff] [blame] | 64 | /* |
| 65 | * If bit 3 of the flags field is set, the 2MB aligned base of the |
| 66 | * kernel image can be anywhere in physical memory, so respect |
| 67 | * images->ep. Otherwise, relocate the image to the base of RAM |
| 68 | * since memory below it is not accessible via the linear mapping. |
| 69 | */ |
Marek Vasut | 7f13b37 | 2018-06-13 06:13:32 +0200 | [diff] [blame] | 70 | if (!force_reloc && (le64_to_cpu(ih->flags) & BIT(3))) |
Masahiro Yamada | 6becd9d | 2018-02-13 11:32:15 +0900 | [diff] [blame] | 71 | dst = image - text_offset; |
| 72 | else |
| 73 | dst = gd->bd->bi_dram[0].start; |
Bin Chen | 6808ef9 | 2018-01-27 16:59:09 +1100 | [diff] [blame] | 74 | |
Masahiro Yamada | 6becd9d | 2018-02-13 11:32:15 +0900 | [diff] [blame] | 75 | *relocated_addr = ALIGN(dst, SZ_2M) + text_offset; |
Bin Chen | 6808ef9 | 2018-01-27 16:59:09 +1100 | [diff] [blame] | 76 | |
Masahiro Yamada | 6becd9d | 2018-02-13 11:32:15 +0900 | [diff] [blame] | 77 | unmap_sysmem(ih); |
Bin Chen | 6808ef9 | 2018-01-27 16:59:09 +1100 | [diff] [blame] | 78 | |
Masahiro Yamada | 6becd9d | 2018-02-13 11:32:15 +0900 | [diff] [blame] | 79 | return 0; |
Bin Chen | 6808ef9 | 2018-01-27 16:59:09 +1100 | [diff] [blame] | 80 | } |