arm64-stub.c 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. /*
  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>
  13. #include <asm/efi.h>
  14. #include <asm/sections.h>
  15. #include <asm/sysreg.h>
  16. #include "efistub.h"
  17. extern bool __nokaslr;
  18. efi_status_t check_platform_features(efi_system_table_t *sys_table_arg)
  19. {
  20. u64 tg;
  21. /* UEFI mandates support for 4 KB granularity, no need to check */
  22. if (IS_ENABLED(CONFIG_ARM64_4K_PAGES))
  23. return EFI_SUCCESS;
  24. tg = (read_cpuid(ID_AA64MMFR0_EL1) >> ID_AA64MMFR0_TGRAN_SHIFT) & 0xf;
  25. if (tg != ID_AA64MMFR0_TGRAN_SUPPORTED) {
  26. if (IS_ENABLED(CONFIG_ARM64_64K_PAGES))
  27. pr_efi_err(sys_table_arg, "This 64 KB granular kernel is not supported by your CPU\n");
  28. else
  29. pr_efi_err(sys_table_arg, "This 16 KB granular kernel is not supported by your CPU\n");
  30. return EFI_UNSUPPORTED;
  31. }
  32. return EFI_SUCCESS;
  33. }
  34. efi_status_t handle_kernel_image(efi_system_table_t *sys_table_arg,
  35. unsigned long *image_addr,
  36. unsigned long *image_size,
  37. unsigned long *reserve_addr,
  38. unsigned long *reserve_size,
  39. unsigned long dram_base,
  40. efi_loaded_image_t *image)
  41. {
  42. efi_status_t status;
  43. unsigned long kernel_size, kernel_memsize = 0;
  44. void *old_image_addr = (void *)*image_addr;
  45. unsigned long preferred_offset;
  46. u64 phys_seed = 0;
  47. if (IS_ENABLED(CONFIG_RANDOMIZE_BASE)) {
  48. if (!__nokaslr) {
  49. status = efi_get_random_bytes(sys_table_arg,
  50. sizeof(phys_seed),
  51. (u8 *)&phys_seed);
  52. if (status == EFI_NOT_FOUND) {
  53. pr_efi(sys_table_arg, "EFI_RNG_PROTOCOL unavailable, no randomness supplied\n");
  54. } else if (status != EFI_SUCCESS) {
  55. pr_efi_err(sys_table_arg, "efi_get_random_bytes() failed\n");
  56. return status;
  57. }
  58. } else {
  59. pr_efi(sys_table_arg, "KASLR disabled on kernel command line\n");
  60. }
  61. }
  62. /*
  63. * The preferred offset of the kernel Image is TEXT_OFFSET bytes beyond
  64. * a 2 MB aligned base, which itself may be lower than dram_base, as
  65. * long as the resulting offset equals or exceeds it.
  66. */
  67. preferred_offset = round_down(dram_base, MIN_KIMG_ALIGN) + TEXT_OFFSET;
  68. if (preferred_offset < dram_base)
  69. preferred_offset += MIN_KIMG_ALIGN;
  70. kernel_size = _edata - _text;
  71. kernel_memsize = kernel_size + (_end - _edata);
  72. if (IS_ENABLED(CONFIG_RANDOMIZE_BASE) && phys_seed != 0) {
  73. /*
  74. * If CONFIG_DEBUG_ALIGN_RODATA is not set, produce a
  75. * displacement in the interval [0, MIN_KIMG_ALIGN) that
  76. * is a multiple of the minimal segment alignment (SZ_64K)
  77. */
  78. u32 mask = (MIN_KIMG_ALIGN - 1) & ~(SZ_64K - 1);
  79. u32 offset = !IS_ENABLED(CONFIG_DEBUG_ALIGN_RODATA) ?
  80. (phys_seed >> 32) & mask : TEXT_OFFSET;
  81. /*
  82. * If KASLR is enabled, and we have some randomness available,
  83. * locate the kernel at a randomized offset in physical memory.
  84. */
  85. *reserve_size = kernel_memsize + offset;
  86. status = efi_random_alloc(sys_table_arg, *reserve_size,
  87. MIN_KIMG_ALIGN, reserve_addr,
  88. (u32)phys_seed);
  89. *image_addr = *reserve_addr + offset;
  90. } else {
  91. /*
  92. * Else, try a straight allocation at the preferred offset.
  93. * This will work around the issue where, if dram_base == 0x0,
  94. * efi_low_alloc() refuses to allocate at 0x0 (to prevent the
  95. * address of the allocation to be mistaken for a FAIL return
  96. * value or a NULL pointer). It will also ensure that, on
  97. * platforms where the [dram_base, dram_base + TEXT_OFFSET)
  98. * interval is partially occupied by the firmware (like on APM
  99. * Mustang), we can still place the kernel at the address
  100. * 'dram_base + TEXT_OFFSET'.
  101. */
  102. if (*image_addr == preferred_offset)
  103. return EFI_SUCCESS;
  104. *image_addr = *reserve_addr = preferred_offset;
  105. *reserve_size = round_up(kernel_memsize, EFI_ALLOC_ALIGN);
  106. status = efi_call_early(allocate_pages, EFI_ALLOCATE_ADDRESS,
  107. EFI_LOADER_DATA,
  108. *reserve_size / EFI_PAGE_SIZE,
  109. (efi_physical_addr_t *)reserve_addr);
  110. }
  111. if (status != EFI_SUCCESS) {
  112. *reserve_size = kernel_memsize + TEXT_OFFSET;
  113. status = efi_low_alloc(sys_table_arg, *reserve_size,
  114. MIN_KIMG_ALIGN, reserve_addr);
  115. if (status != EFI_SUCCESS) {
  116. pr_efi_err(sys_table_arg, "Failed to relocate kernel\n");
  117. *reserve_size = 0;
  118. return status;
  119. }
  120. *image_addr = *reserve_addr + TEXT_OFFSET;
  121. }
  122. memcpy((void *)*image_addr, old_image_addr, kernel_size);
  123. return EFI_SUCCESS;
  124. }