#include <linux/kexec.h> #include <asm/kexec.h> /* For riscv_kexec_* symbol defines */ #include <linux/smp.h> /* For smp_send_stop () */ #include <asm/cacheflush.h> /* For local_flush_icache_all() */ #include <asm/barrier.h> /* For smp_wmb() */ #include <asm/page.h> /* For PAGE_MASK */ #include <linux/libfdt.h> /* For fdt_check_header() */ #include <asm/set_memory.h> /* For set_memory_x() */ #include <linux/compiler.h> /* For unreachable() */ #include <linux/cpu.h> /* For cpu_down() */ #include <linux/reboot.h> #include <linux/interrupt.h> #include <linux/irq.h>
/* * machine_kexec_prepare - Initialize kexec * * This function is called from do_kexec_load, when the user has * provided us with an image to be loaded. Its goal is to validate * the image and prepare the control code buffer as needed. * Note that kimage_alloc_init has already been called and the * control buffer has already been allocated.
*/ int
machine_kexec_prepare(struct kimage *image)
{ struct kimage_arch *internal = &image->arch; struct fdt_header fdt = {0}; void *control_code_buffer = NULL; unsignedint control_code_buffer_sz = 0; int i = 0;
/* Find the Flattened Device Tree and save its physical address */ for (i = 0; i < image->nr_segments; i++) { if (image->segment[i].memsz <= sizeof(fdt)) continue;
if (image->file_mode)
memcpy(&fdt, image->segment[i].buf, sizeof(fdt)); elseif (copy_from_user(&fdt, image->segment[i].buf, sizeof(fdt))) continue;
if (!internal->fdt_addr) {
pr_err("Device tree not included in the provided image\n"); return -EINVAL;
}
/* Copy the assembler code for relocation to the control page */ if (image->type != KEXEC_TYPE_CRASH) {
control_code_buffer = page_address(image->control_code_page);
control_code_buffer_sz = page_size(image->control_code_page);
if (unlikely(riscv_kexec_relocate_size > control_code_buffer_sz)) {
pr_err("Relocation code doesn't fit within a control page\n"); return -EINVAL;
}
/* Mark the control page executable */
set_memory_x((unsignedlong) control_code_buffer, 1);
}
return 0;
}
/* * machine_kexec_cleanup - Cleanup any leftovers from * machine_kexec_prepare * * This function is called by kimage_free to handle any arch-specific * allocations done on machine_kexec_prepare. Since we didn't do any * allocations there, this is just an empty function. Note that the * control buffer is freed by kimage_free.
*/ void
machine_kexec_cleanup(struct kimage *image)
{
}
/* * machine_shutdown - Prepare for a kexec reboot * * This function is called by kernel_kexec just before machine_kexec * below. Its goal is to prepare the rest of the system (the other * harts and possibly devices etc) for a kexec reboot.
*/ void machine_shutdown(void)
{ /* * No more interrupts on this hart * until we are back up.
*/
local_irq_disable();
/* * machine_crash_shutdown - Prepare to kexec after a kernel crash * * This function is called by crash_kexec just before machine_kexec * and its goal is to shutdown non-crashing cpus and save registers.
*/ void
machine_crash_shutdown(struct pt_regs *regs)
{
local_irq_disable();
/* * machine_kexec - Jump to the loaded kimage * * This function is called by kernel_kexec which is called by the * reboot system call when the reboot cmd is LINUX_REBOOT_CMD_KEXEC, * or by crash_kernel which is called by the kernel's arch-specific * trap handler in case of a kernel panic. It's the final stage of * the kexec process where the pre-loaded kimage is ready to be * executed. We assume at this point that all other harts are * suspended and this hart will be the new boot hart.
*/ void __noreturn
machine_kexec(struct kimage *image)
{ struct kimage_arch *internal = &image->arch; unsignedlong jump_addr = (unsignedlong) image->start; unsignedlong first_ind_entry = (unsignedlong) &image->head; unsignedlong this_cpu_id = __smp_processor_id(); unsignedlong this_hart_id = cpuid_to_hartid_map(this_cpu_id); unsignedlong fdt_addr = internal->fdt_addr; void *control_code_buffer = page_address(image->control_code_page);
riscv_kexec_method kexec_method = NULL;
#ifdef CONFIG_SMP
WARN(smp_crash_stop_failed(), "Some CPUs may be stale, kdump will be unreliable.\n"); #endif
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.