relocate_kernel.S 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * kexec for arm64
  4. *
  5. * Copyright (C) Linaro.
  6. * Copyright (C) Huawei Futurewei Technologies.
  7. * Copyright (C) 2021, Microsoft Corporation.
  8. * Pasha Tatashin <[email protected]>
  9. */
  10. #include <linux/kexec.h>
  11. #include <linux/linkage.h>
  12. #include <asm/assembler.h>
  13. #include <asm/kexec.h>
  14. #include <asm/page.h>
  15. #include <asm/sysreg.h>
  16. #include <asm/virt.h>
  17. .macro turn_off_mmu tmp1, tmp2
  18. mov_q \tmp1, INIT_SCTLR_EL1_MMU_OFF
  19. pre_disable_mmu_workaround
  20. msr sctlr_el1, \tmp1
  21. isb
  22. .endm
  23. .section ".kexec_relocate.text", "ax"
  24. /*
  25. * arm64_relocate_new_kernel - Put a 2nd stage image in place and boot it.
  26. *
  27. * The memory that the old kernel occupies may be overwritten when copying the
  28. * new image to its final location. To assure that the
  29. * arm64_relocate_new_kernel routine which does that copy is not overwritten,
  30. * all code and data needed by arm64_relocate_new_kernel must be between the
  31. * symbols arm64_relocate_new_kernel and arm64_relocate_new_kernel_end. The
  32. * machine_kexec() routine will copy arm64_relocate_new_kernel to the kexec
  33. * safe memory that has been set up to be preserved during the copy operation.
  34. */
  35. SYM_CODE_START(arm64_relocate_new_kernel)
  36. /*
  37. * The kimage structure isn't allocated specially and may be clobbered
  38. * during relocation. We must load any values we need from it prior to
  39. * any relocation occurring.
  40. */
  41. ldr x28, [x0, #KIMAGE_START]
  42. ldr x27, [x0, #KIMAGE_ARCH_EL2_VECTORS]
  43. ldr x26, [x0, #KIMAGE_ARCH_DTB_MEM]
  44. /* Setup the list loop variables. */
  45. ldr x18, [x0, #KIMAGE_ARCH_ZERO_PAGE] /* x18 = zero page for BBM */
  46. ldr x17, [x0, #KIMAGE_ARCH_TTBR1] /* x17 = linear map copy */
  47. ldr x16, [x0, #KIMAGE_HEAD] /* x16 = kimage_head */
  48. ldr x22, [x0, #KIMAGE_ARCH_PHYS_OFFSET] /* x22 phys_offset */
  49. raw_dcache_line_size x15, x1 /* x15 = dcache line size */
  50. break_before_make_ttbr_switch x18, x17, x1, x2 /* set linear map */
  51. .Lloop:
  52. and x12, x16, PAGE_MASK /* x12 = addr */
  53. sub x12, x12, x22 /* Convert x12 to virt */
  54. /* Test the entry flags. */
  55. .Ltest_source:
  56. tbz x16, IND_SOURCE_BIT, .Ltest_indirection
  57. /* Invalidate dest page to PoC. */
  58. mov x19, x13
  59. copy_page x13, x12, x1, x2, x3, x4, x5, x6, x7, x8
  60. add x1, x19, #PAGE_SIZE
  61. dcache_by_myline_op civac, sy, x19, x1, x15, x20
  62. b .Lnext
  63. .Ltest_indirection:
  64. tbz x16, IND_INDIRECTION_BIT, .Ltest_destination
  65. mov x14, x12 /* ptr = addr */
  66. b .Lnext
  67. .Ltest_destination:
  68. tbz x16, IND_DESTINATION_BIT, .Lnext
  69. mov x13, x12 /* dest = addr */
  70. .Lnext:
  71. ldr x16, [x14], #8 /* entry = *ptr++ */
  72. tbz x16, IND_DONE_BIT, .Lloop /* while (!(entry & DONE)) */
  73. /* wait for writes from copy_page to finish */
  74. dsb nsh
  75. ic iallu
  76. dsb nsh
  77. isb
  78. turn_off_mmu x12, x13
  79. /* Start new image. */
  80. cbz x27, .Lel1
  81. mov x1, x28 /* kernel entry point */
  82. mov x2, x26 /* dtb address */
  83. mov x3, xzr
  84. mov x4, xzr
  85. mov x0, #HVC_SOFT_RESTART
  86. hvc #0 /* Jumps from el2 */
  87. .Lel1:
  88. mov x0, x26 /* dtb address */
  89. mov x1, xzr
  90. mov x2, xzr
  91. mov x3, xzr
  92. br x28 /* Jumps from el1 */
  93. SYM_CODE_END(arm64_relocate_new_kernel)