Home
last modified time | relevance | path

Searched refs:reboot_code_buffer (Results 1 – 8 of 8) sorted by relevance

/openbmc/linux/arch/powerpc/kexec/
H A Dcore_32.c19 unsigned long reboot_code_buffer,
33 unsigned long reboot_code_buffer, reboot_code_buffer_phys; in default_machine_kexec() local
46 reboot_code_buffer = in default_machine_kexec()
48 reboot_code_buffer_phys = virt_to_phys((void *)reboot_code_buffer); in default_machine_kexec()
51 memcpy((void *)reboot_code_buffer, relocate_new_kernel, in default_machine_kexec()
54 flush_icache_range(reboot_code_buffer, in default_machine_kexec()
55 reboot_code_buffer + KEXEC_CONTROL_PAGE_SIZE); in default_machine_kexec()
62 rnk = (relocate_new_kernel_t) reboot_code_buffer; in default_machine_kexec()
/openbmc/linux/arch/mips/kernel/
H A Dmachine_kexec.c21 static unsigned long reboot_code_buffer; variable
164 reboot_code_buffer + relocate_new_kernel_size); in kexec_nonboot_cpu_jump()
201 local_flush_icache_range(reboot_code_buffer, in kexec_reboot()
202 reboot_code_buffer + relocate_new_kernel_size); in kexec_reboot()
204 do_kexec = (void *)reboot_code_buffer; in kexec_reboot()
214 reboot_code_buffer = in machine_kexec()
227 memcpy((void*)reboot_code_buffer, relocate_new_kernel, in machine_kexec()
258 relocated_kexec_smp_wait = reboot_code_buffer + in machine_kexec()
/openbmc/linux/arch/m68k/kernel/
H A Dmachine_kexec.c41 void *reboot_code_buffer; in machine_kexec() local
44 reboot_code_buffer = page_address(image->control_code_page); in machine_kexec()
46 memcpy(reboot_code_buffer, relocate_new_kernel, in machine_kexec()
57 ((relocate_kernel_t) reboot_code_buffer)(image->head & PAGE_MASK, in machine_kexec()
/openbmc/linux/arch/sh/kernel/
H A Dmachine_kexec.c24 unsigned long reboot_code_buffer,
72 unsigned long reboot_code_buffer; in machine_kexec() local
104 reboot_code_buffer = in machine_kexec()
108 memcpy((void *)reboot_code_buffer, relocate_new_kernel, in machine_kexec()
117 rnk = (relocate_new_kernel_t) reboot_code_buffer; in machine_kexec()
118 (*rnk)(page_list, reboot_code_buffer, in machine_kexec()
/openbmc/linux/arch/loongarch/kernel/
H A Dmachine_kexec.c28 static unsigned long reboot_code_buffer; variable
90 reboot_code_buffer = (unsigned long)page_address(kimage->control_code_page); in machine_kexec_prepare()
91 memcpy((void *)reboot_code_buffer, relocate_new_kernel, relocate_new_kernel_size); in machine_kexec_prepare()
95 relocated_kexec_smp_wait = reboot_code_buffer + (void *)(kexec_smp_wait - relocate_new_kernel); in machine_kexec_prepare()
133 do_kexec = (void *)reboot_code_buffer; in kexec_reboot()
/openbmc/linux/arch/arm/kernel/
H A Dmachine_kexec.c169 void *reboot_code_buffer; in machine_kexec() local
181 reboot_code_buffer = page_address(image->control_code_page); in machine_kexec()
184 reboot_entry = fncpy(reboot_code_buffer, in machine_kexec()
188 data = reboot_code_buffer + relocate_new_kernel_size; in machine_kexec()
/openbmc/linux/arch/s390/kernel/
H A Dmachine_kexec.c191 void *reboot_code_buffer; in machine_kexec_prepare() local
201 reboot_code_buffer = page_to_virt(image->control_code_page); in machine_kexec_prepare()
204 memcpy(reboot_code_buffer, relocate_kernel, relocate_kernel_len); in machine_kexec_prepare()
/openbmc/linux/arch/powerpc/include/asm/
H A Dkexec.h97 void relocate_new_kernel(unsigned long indirection_page, unsigned long reboot_code_buffer,