machine_kexec.c 4.9 KB

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