machine_kexec.c 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  1. // SPDX-License-Identifier: GPL-2.0
  2. /*
  3. * machine_kexec.c - handle transition of Linux booting another kernel
  4. */
  5. #include <linux/mm.h>
  6. #include <linux/kexec.h>
  7. #include <linux/delay.h>
  8. #include <linux/reboot.h>
  9. #include <linux/io.h>
  10. #include <linux/irq.h>
  11. #include <linux/memblock.h>
  12. #include <asm/pgtable.h>
  13. #include <linux/of_fdt.h>
  14. #include <asm/pgalloc.h>
  15. #include <asm/mmu_context.h>
  16. #include <asm/cacheflush.h>
  17. #include <asm/fncpy.h>
  18. #include <asm/mach-types.h>
  19. #include <asm/smp_plat.h>
  20. #include <asm/system_misc.h>
  21. #include <asm/set_memory.h>
  22. extern void relocate_new_kernel(void);
  23. extern const unsigned int relocate_new_kernel_size;
  24. extern unsigned long kexec_start_address;
  25. extern unsigned long kexec_indirection_page;
  26. extern unsigned long kexec_mach_type;
  27. extern unsigned long kexec_boot_atags;
  28. static atomic_t waiting_for_crash_ipi;
  29. /*
  30. * Provide a dummy crash_notes definition while crash dump arrives to arm.
  31. * This prevents breakage of crash_notes attribute in kernel/ksysfs.c.
  32. */
  33. int machine_kexec_prepare(struct kimage *image)
  34. {
  35. struct kexec_segment *current_segment;
  36. __be32 header;
  37. int i, err;
  38. image->arch.kernel_r2 = image->start - KEXEC_ARM_ZIMAGE_OFFSET
  39. + KEXEC_ARM_ATAGS_OFFSET;
  40. /*
  41. * Validate that if the current HW supports SMP, then the SW supports
  42. * and implements CPU hotplug for the current HW. If not, we won't be
  43. * able to kexec reliably, so fail the prepare operation.
  44. */
  45. if (num_possible_cpus() > 1 && platform_can_secondary_boot() &&
  46. !platform_can_cpu_hotplug())
  47. return -EINVAL;
  48. /*
  49. * No segment at default ATAGs address. try to locate
  50. * a dtb using magic.
  51. */
  52. for (i = 0; i < image->nr_segments; i++) {
  53. current_segment = &image->segment[i];
  54. if (!memblock_is_region_memory(idmap_to_phys(current_segment->mem),
  55. current_segment->memsz))
  56. return -EINVAL;
  57. err = get_user(header, (__be32*)current_segment->buf);
  58. if (err)
  59. return err;
  60. if (header == cpu_to_be32(OF_DT_HEADER))
  61. image->arch.kernel_r2 = current_segment->mem;
  62. }
  63. return 0;
  64. }
  65. void machine_kexec_cleanup(struct kimage *image)
  66. {
  67. }
  68. void machine_crash_nonpanic_core(void *unused)
  69. {
  70. struct pt_regs regs;
  71. crash_setup_regs(&regs, get_irq_regs());
  72. printk(KERN_DEBUG "CPU %u will stop doing anything useful since another CPU has crashed\n",
  73. smp_processor_id());
  74. crash_save_cpu(&regs, smp_processor_id());
  75. flush_cache_all();
  76. set_cpu_online(smp_processor_id(), false);
  77. atomic_dec(&waiting_for_crash_ipi);
  78. while (1)
  79. cpu_relax();
  80. }
  81. void crash_smp_send_stop(void)
  82. {
  83. static int cpus_stopped;
  84. unsigned long msecs;
  85. if (cpus_stopped)
  86. return;
  87. atomic_set(&waiting_for_crash_ipi, num_online_cpus() - 1);
  88. smp_call_function(machine_crash_nonpanic_core, NULL, false);
  89. msecs = 1000; /* Wait at most a second for the other cpus to stop */
  90. while ((atomic_read(&waiting_for_crash_ipi) > 0) && msecs) {
  91. mdelay(1);
  92. msecs--;
  93. }
  94. if (atomic_read(&waiting_for_crash_ipi) > 0)
  95. pr_warn("Non-crashing CPUs did not react to IPI\n");
  96. cpus_stopped = 1;
  97. }
  98. static void machine_kexec_mask_interrupts(void)
  99. {
  100. unsigned int i;
  101. struct irq_desc *desc;
  102. for_each_irq_desc(i, desc) {
  103. struct irq_chip *chip;
  104. chip = irq_desc_get_chip(desc);
  105. if (!chip)
  106. continue;
  107. if (chip->irq_eoi && irqd_irq_inprogress(&desc->irq_data))
  108. chip->irq_eoi(&desc->irq_data);
  109. if (chip->irq_mask)
  110. chip->irq_mask(&desc->irq_data);
  111. if (chip->irq_disable && !irqd_irq_disabled(&desc->irq_data))
  112. chip->irq_disable(&desc->irq_data);
  113. }
  114. }
  115. void machine_crash_shutdown(struct pt_regs *regs)
  116. {
  117. local_irq_disable();
  118. crash_smp_send_stop();
  119. crash_save_cpu(regs, smp_processor_id());
  120. machine_kexec_mask_interrupts();
  121. pr_info("Loading crashdump kernel...\n");
  122. }
  123. /*
  124. * Function pointer to optional machine-specific reinitialization
  125. */
  126. void (*kexec_reinit)(void);
  127. void machine_kexec(struct kimage *image)
  128. {
  129. unsigned long page_list, reboot_entry_phys;
  130. void (*reboot_entry)(void);
  131. void *reboot_code_buffer;
  132. /*
  133. * This can only happen if machine_shutdown() failed to disable some
  134. * CPU, and that can only happen if the checks in
  135. * machine_kexec_prepare() were not correct. If this fails, we can't
  136. * reliably kexec anyway, so BUG_ON is appropriate.
  137. */
  138. BUG_ON(num_online_cpus() > 1);
  139. page_list = image->head & PAGE_MASK;
  140. reboot_code_buffer = page_address(image->control_code_page);
  141. /* Prepare parameters for reboot_code_buffer*/
  142. set_kernel_text_rw();
  143. kexec_start_address = image->start;
  144. kexec_indirection_page = page_list;
  145. kexec_mach_type = machine_arch_type;
  146. kexec_boot_atags = image->arch.kernel_r2;
  147. /* copy our kernel relocation code to the control code page */
  148. reboot_entry = fncpy(reboot_code_buffer,
  149. &relocate_new_kernel,
  150. relocate_new_kernel_size);
  151. /* get the identity mapping physical address for the reboot code */
  152. reboot_entry_phys = virt_to_idmap(reboot_entry);
  153. pr_info("Bye!\n");
  154. if (kexec_reinit)
  155. kexec_reinit();
  156. soft_restart(reboot_entry_phys);
  157. }
  158. void arch_crash_save_vmcoreinfo(void)
  159. {
  160. #ifdef CONFIG_ARM_LPAE
  161. VMCOREINFO_CONFIG(ARM_LPAE);
  162. #endif
  163. }