Michael Ellerman | 3d1229d | 2005-11-14 23:35:00 +1100 | [diff] [blame] | 1 | /* |
| 2 | * PPC32 code to handle Linux booting another kernel. |
| 3 | * |
| 4 | * Copyright (C) 2002-2003 Eric Biederman <ebiederm@xmission.com> |
| 5 | * GameCube/ppc32 port Copyright (C) 2004 Albert Herranz |
| 6 | * Copyright (C) 2005 IBM Corporation. |
| 7 | * |
| 8 | * This source code is licensed under the GNU General Public License, |
| 9 | * Version 2. See the file COPYING for more details. |
| 10 | */ |
| 11 | |
| 12 | #include <linux/kexec.h> |
| 13 | #include <linux/mm.h> |
| 14 | #include <linux/string.h> |
| 15 | #include <asm/cacheflush.h> |
| 16 | #include <asm/hw_irq.h> |
| 17 | #include <asm/io.h> |
| 18 | |
Joe Perches | 9402c95 | 2012-01-12 17:17:17 -0800 | [diff] [blame] | 19 | typedef void (*relocate_new_kernel_t)( |
Michael Ellerman | 3d1229d | 2005-11-14 23:35:00 +1100 | [diff] [blame] | 20 | unsigned long indirection_page, |
| 21 | unsigned long reboot_code_buffer, |
Joe Perches | ff2d8b1 | 2012-01-12 17:17:21 -0800 | [diff] [blame] | 22 | unsigned long start_address) __noreturn; |
Michael Ellerman | 3d1229d | 2005-11-14 23:35:00 +1100 | [diff] [blame] | 23 | |
| 24 | /* |
| 25 | * This is a generic machine_kexec function suitable at least for |
| 26 | * non-OpenFirmware embedded platforms. |
| 27 | * It merely copies the image relocation code to the control page and |
| 28 | * jumps to it. |
| 29 | * A platform specific function may just call this one. |
| 30 | */ |
| 31 | void default_machine_kexec(struct kimage *image) |
| 32 | { |
Tobias Klauser | 2efe55a | 2006-06-26 18:57:34 +0200 | [diff] [blame] | 33 | extern const unsigned char relocate_new_kernel[]; |
| 34 | extern const unsigned int relocate_new_kernel_size; |
Michael Ellerman | 3d1229d | 2005-11-14 23:35:00 +1100 | [diff] [blame] | 35 | unsigned long page_list; |
| 36 | unsigned long reboot_code_buffer, reboot_code_buffer_phys; |
| 37 | relocate_new_kernel_t rnk; |
| 38 | |
| 39 | /* Interrupts aren't acceptable while we reboot */ |
| 40 | local_irq_disable(); |
| 41 | |
Matthew McClintock | c71635d | 2010-09-16 17:58:23 -0500 | [diff] [blame] | 42 | /* mask each interrupt so we are in a more sane state for the |
| 43 | * kexec kernel */ |
| 44 | machine_kexec_mask_interrupts(); |
| 45 | |
Michael Ellerman | 3d1229d | 2005-11-14 23:35:00 +1100 | [diff] [blame] | 46 | page_list = image->head; |
| 47 | |
| 48 | /* we need both effective and real address here */ |
| 49 | reboot_code_buffer = |
| 50 | (unsigned long)page_address(image->control_code_page); |
| 51 | reboot_code_buffer_phys = virt_to_phys((void *)reboot_code_buffer); |
| 52 | |
| 53 | /* copy our kernel relocation code to the control code page */ |
| 54 | memcpy((void *)reboot_code_buffer, relocate_new_kernel, |
| 55 | relocate_new_kernel_size); |
| 56 | |
| 57 | flush_icache_range(reboot_code_buffer, |
Huang Ying | 163f687 | 2008-08-15 00:40:22 -0700 | [diff] [blame] | 58 | reboot_code_buffer + KEXEC_CONTROL_PAGE_SIZE); |
Michael Ellerman | 3d1229d | 2005-11-14 23:35:00 +1100 | [diff] [blame] | 59 | printk(KERN_INFO "Bye!\n"); |
| 60 | |
| 61 | /* now call it */ |
| 62 | rnk = (relocate_new_kernel_t) reboot_code_buffer; |
| 63 | (*rnk)(page_list, reboot_code_buffer_phys, image->start); |
| 64 | } |
| 65 | |
| 66 | int default_machine_kexec_prepare(struct kimage *image) |
| 67 | { |
| 68 | return 0; |
| 69 | } |