blob: e0e6b74fef8f7becdef4c0481919ead298023250 [file] [log] [blame]
Mark Salter3c7f2552014-04-15 22:47:52 -04001/*
2 * Copyright (C) 2013, 2014 Linaro Ltd; <roy.franz@linaro.org>
3 *
4 * This file implements the EFI boot stub for the arm64 kernel.
5 * Adapted from ARM version by Mark Salter <msalter@redhat.com>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 *
11 */
12#include <linux/efi.h>
Ard Biesheuvela13b0072014-07-02 14:54:41 +020013#include <asm/efi.h>
Mark Salter3c7f2552014-04-15 22:47:52 -040014#include <asm/sections.h>
Mark Salter3c7f2552014-04-15 22:47:52 -040015
Ard Biesheuvel2b5fe072016-01-26 14:48:29 +010016#include "efistub.h"
17
18extern bool __nokaslr;
19
Ard Biesheuvele38457c2015-07-24 12:38:27 +010020efi_status_t __init handle_kernel_image(efi_system_table_t *sys_table_arg,
Ard Biesheuvelddeeefe2015-01-12 20:28:20 +000021 unsigned long *image_addr,
22 unsigned long *image_size,
23 unsigned long *reserve_addr,
24 unsigned long *reserve_size,
25 unsigned long dram_base,
26 efi_loaded_image_t *image)
Mark Salter3c7f2552014-04-15 22:47:52 -040027{
28 efi_status_t status;
29 unsigned long kernel_size, kernel_memsize = 0;
Ard Biesheuvele38457c2015-07-24 12:38:27 +010030 void *old_image_addr = (void *)*image_addr;
Ard Biesheuvel73effcc2015-10-29 15:07:25 +010031 unsigned long preferred_offset;
Ard Biesheuvel2b5fe072016-01-26 14:48:29 +010032 u64 phys_seed = 0;
33
34 if (IS_ENABLED(CONFIG_RANDOMIZE_BASE)) {
35 if (!__nokaslr) {
36 status = efi_get_random_bytes(sys_table_arg,
37 sizeof(phys_seed),
38 (u8 *)&phys_seed);
39 if (status == EFI_NOT_FOUND) {
40 pr_efi(sys_table_arg, "EFI_RNG_PROTOCOL unavailable, no randomness supplied\n");
41 } else if (status != EFI_SUCCESS) {
42 pr_efi_err(sys_table_arg, "efi_get_random_bytes() failed\n");
43 return status;
44 }
45 } else {
46 pr_efi(sys_table_arg, "KASLR disabled on kernel command line\n");
47 }
48 }
Ard Biesheuvel73effcc2015-10-29 15:07:25 +010049
50 /*
51 * The preferred offset of the kernel Image is TEXT_OFFSET bytes beyond
52 * a 2 MB aligned base, which itself may be lower than dram_base, as
53 * long as the resulting offset equals or exceeds it.
54 */
Ard Biesheuvel2b5fe072016-01-26 14:48:29 +010055 preferred_offset = round_down(dram_base, MIN_KIMG_ALIGN) + TEXT_OFFSET;
Ard Biesheuvel73effcc2015-10-29 15:07:25 +010056 if (preferred_offset < dram_base)
Ard Biesheuvel2b5fe072016-01-26 14:48:29 +010057 preferred_offset += MIN_KIMG_ALIGN;
Mark Salter3c7f2552014-04-15 22:47:52 -040058
Mark Salter3c7f2552014-04-15 22:47:52 -040059 kernel_size = _edata - _text;
Ard Biesheuvel2b5fe072016-01-26 14:48:29 +010060 kernel_memsize = kernel_size + (_end - _edata);
Ard Biesheuvele38457c2015-07-24 12:38:27 +010061
Ard Biesheuvel2b5fe072016-01-26 14:48:29 +010062 if (IS_ENABLED(CONFIG_RANDOMIZE_BASE) && phys_seed != 0) {
Ard Biesheuvele38457c2015-07-24 12:38:27 +010063 /*
Ard Biesheuvel2b5fe072016-01-26 14:48:29 +010064 * If KASLR is enabled, and we have some randomness available,
65 * locate the kernel at a randomized offset in physical memory.
66 */
67 *reserve_size = kernel_memsize + TEXT_OFFSET;
68 status = efi_random_alloc(sys_table_arg, *reserve_size,
69 MIN_KIMG_ALIGN, reserve_addr,
70 phys_seed);
71
72 *image_addr = *reserve_addr + TEXT_OFFSET;
73 } else {
74 /*
75 * Else, try a straight allocation at the preferred offset.
Ard Biesheuvele38457c2015-07-24 12:38:27 +010076 * This will work around the issue where, if dram_base == 0x0,
77 * efi_low_alloc() refuses to allocate at 0x0 (to prevent the
78 * address of the allocation to be mistaken for a FAIL return
79 * value or a NULL pointer). It will also ensure that, on
80 * platforms where the [dram_base, dram_base + TEXT_OFFSET)
81 * interval is partially occupied by the firmware (like on APM
82 * Mustang), we can still place the kernel at the address
83 * 'dram_base + TEXT_OFFSET'.
84 */
Ard Biesheuvel2b5fe072016-01-26 14:48:29 +010085 if (*image_addr == preferred_offset)
86 return EFI_SUCCESS;
Ard Biesheuvele38457c2015-07-24 12:38:27 +010087
Ard Biesheuvel2b5fe072016-01-26 14:48:29 +010088 *image_addr = *reserve_addr = preferred_offset;
89 *reserve_size = round_up(kernel_memsize, EFI_ALLOC_ALIGN);
90
91 status = efi_call_early(allocate_pages, EFI_ALLOCATE_ADDRESS,
92 EFI_LOADER_DATA,
93 *reserve_size / EFI_PAGE_SIZE,
94 (efi_physical_addr_t *)reserve_addr);
Mark Salter3c7f2552014-04-15 22:47:52 -040095 }
96
Ard Biesheuvel2b5fe072016-01-26 14:48:29 +010097 if (status != EFI_SUCCESS) {
98 *reserve_size = kernel_memsize + TEXT_OFFSET;
99 status = efi_low_alloc(sys_table_arg, *reserve_size,
100 MIN_KIMG_ALIGN, reserve_addr);
101
102 if (status != EFI_SUCCESS) {
103 pr_efi_err(sys_table_arg, "Failed to relocate kernel\n");
104 *reserve_size = 0;
105 return status;
106 }
107 *image_addr = *reserve_addr + TEXT_OFFSET;
108 }
109 memcpy((void *)*image_addr, old_image_addr, kernel_size);
Mark Salter3c7f2552014-04-15 22:47:52 -0400110
111 return EFI_SUCCESS;
112}