machine_kexec.c 4.8 KB

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