blob: bf9f1f906d6461d3d6680f3572f45c24853d5b58 [file] [log] [blame]
Thomas Gleixner40b0b3f2019-06-03 07:44:46 +02001// SPDX-License-Identifier: GPL-2.0-only
Michael Ellerman3d1229d2005-11-14 23:35:00 +11002/*
3 * PPC32 code to handle Linux booting another kernel.
4 *
5 * Copyright (C) 2002-2003 Eric Biederman <ebiederm@xmission.com>
6 * GameCube/ppc32 port Copyright (C) 2004 Albert Herranz
7 * Copyright (C) 2005 IBM Corporation.
Michael Ellerman3d1229d2005-11-14 23:35:00 +11008 */
9
10#include <linux/kexec.h>
11#include <linux/mm.h>
12#include <linux/string.h>
13#include <asm/cacheflush.h>
14#include <asm/hw_irq.h>
15#include <asm/io.h>
16
Joe Perches9402c952012-01-12 17:17:17 -080017typedef void (*relocate_new_kernel_t)(
Michael Ellerman3d1229d2005-11-14 23:35:00 +110018 unsigned long indirection_page,
19 unsigned long reboot_code_buffer,
Joe Perchesff2d8b12012-01-12 17:17:21 -080020 unsigned long start_address) __noreturn;
Michael Ellerman3d1229d2005-11-14 23:35:00 +110021
22/*
23 * This is a generic machine_kexec function suitable at least for
24 * non-OpenFirmware embedded platforms.
25 * It merely copies the image relocation code to the control page and
26 * jumps to it.
27 * A platform specific function may just call this one.
28 */
29void default_machine_kexec(struct kimage *image)
30{
Tobias Klauser2efe55a2006-06-26 18:57:34 +020031 extern const unsigned int relocate_new_kernel_size;
Michael Ellerman3d1229d2005-11-14 23:35:00 +110032 unsigned long page_list;
33 unsigned long reboot_code_buffer, reboot_code_buffer_phys;
34 relocate_new_kernel_t rnk;
35
36 /* Interrupts aren't acceptable while we reboot */
37 local_irq_disable();
38
Matthew McClintockc71635d2010-09-16 17:58:23 -050039 /* mask each interrupt so we are in a more sane state for the
40 * kexec kernel */
41 machine_kexec_mask_interrupts();
42
Michael Ellerman3d1229d2005-11-14 23:35:00 +110043 page_list = image->head;
44
45 /* we need both effective and real address here */
46 reboot_code_buffer =
47 (unsigned long)page_address(image->control_code_page);
48 reboot_code_buffer_phys = virt_to_phys((void *)reboot_code_buffer);
49
50 /* copy our kernel relocation code to the control code page */
51 memcpy((void *)reboot_code_buffer, relocate_new_kernel,
52 relocate_new_kernel_size);
53
54 flush_icache_range(reboot_code_buffer,
Huang Ying163f6872008-08-15 00:40:22 -070055 reboot_code_buffer + KEXEC_CONTROL_PAGE_SIZE);
Michael Ellerman3d1229d2005-11-14 23:35:00 +110056 printk(KERN_INFO "Bye!\n");
57
Christophe Leroy6c284222019-06-03 08:20:28 +000058 if (!IS_ENABLED(CONFIG_FSL_BOOKE) && !IS_ENABLED(CONFIG_44x))
59 relocate_new_kernel(page_list, reboot_code_buffer_phys, image->start);
60
Michael Ellerman3d1229d2005-11-14 23:35:00 +110061 /* now call it */
62 rnk = (relocate_new_kernel_t) reboot_code_buffer;
63 (*rnk)(page_list, reboot_code_buffer_phys, image->start);
64}
65
66int default_machine_kexec_prepare(struct kimage *image)
67{
68 return 0;
69}