* [PATCH] sh: simplify kexec vbr code V2
@ 2009-03-18 8:47 Magnus Damm
2009-03-18 10:34 ` Paul Mundt
0 siblings, 1 reply; 2+ messages in thread
From: Magnus Damm @ 2009-03-18 8:47 UTC (permalink / raw)
To: linux-sh
From: Magnus Damm <damm@igel.co.jp>
Setup the vbr register in machine_kexec() V2. This
instead of passing values to the assembly snippet.
Signed-off-by: Magnus Damm <damm@igel.co.jp>
---
Changes since V1:
- added a call to set_bl_bit() to block exceptions
arch/sh/kernel/machine_kexec.c | 17 ++++++++---------
arch/sh/kernel/relocate_kernel.S | 4 ----
2 files changed, 8 insertions(+), 13 deletions(-)
--- 0001/arch/sh/kernel/machine_kexec.c
+++ work/arch/sh/kernel/machine_kexec.c 2009-03-18 15:57:42.000000000 +0900
@@ -23,8 +23,7 @@
typedef NORET_TYPE void (*relocate_new_kernel_t)(
unsigned long indirection_page,
unsigned long reboot_code_buffer,
- unsigned long start_address,
- unsigned long vbr_reg) ATTRIB_NORET;
+ unsigned long start_address) ATTRIB_NORET;
extern const unsigned char relocate_new_kernel[];
extern const unsigned int relocate_new_kernel_size;
@@ -76,14 +75,8 @@ void machine_kexec(struct kimage *image)
unsigned long page_list;
unsigned long reboot_code_buffer;
- unsigned long vbr_reg;
relocate_new_kernel_t rnk;
-#if defined(CONFIG_SH_STANDARD_BIOS)
- vbr_reg = ((unsigned long )gdb_vbr_vector) - 0x100;
-#else
- vbr_reg = 0x80000000; // dummy
-#endif
/* Interrupts aren't acceptable while we reboot */
local_irq_disable();
@@ -100,9 +93,15 @@ void machine_kexec(struct kimage *image)
kexec_info(image);
flush_cache_all();
+ set_bl_bit();
+#if defined(CONFIG_SH_STANDARD_BIOS)
+ asm volatile("ldc %0, vbr" :
+ : "r" (((unsigned long) gdb_vbr_vector) - 0x100)
+ : "memory");
+#endif
/* now call it */
rnk = (relocate_new_kernel_t) reboot_code_buffer;
- (*rnk)(page_list, reboot_code_buffer, P2SEGADDR(image->start), vbr_reg);
+ (*rnk)(page_list, reboot_code_buffer, P2SEGADDR(image->start));
}
void arch_crash_save_vmcoreinfo(void)
--- 0001/arch/sh/kernel/relocate_kernel.S
+++ work/arch/sh/kernel/relocate_kernel.S 2009-03-18 11:44:29.000000000 +0900
@@ -16,7 +16,6 @@ relocate_new_kernel:
/* r4 = indirection_page */
/* r5 = reboot_code_buffer */
/* r6 = start_address */
- /* r7 = vbr_reg */
mov.l 10f,r8 /* PAGE_SIZE */
mov.l 11f,r9 /* P2SEG */
@@ -80,9 +79,6 @@ relocate_new_kernel:
bra 0b
nop
6:
-#ifdef CONFIG_SH_STANDARD_BIOS
- ldc r7, vbr
-#endif
jmp @r6
nop
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] sh: simplify kexec vbr code V2
2009-03-18 8:47 [PATCH] sh: simplify kexec vbr code V2 Magnus Damm
@ 2009-03-18 10:34 ` Paul Mundt
0 siblings, 0 replies; 2+ messages in thread
From: Paul Mundt @ 2009-03-18 10:34 UTC (permalink / raw)
To: linux-sh
On Wed, Mar 18, 2009 at 05:47:31PM +0900, Magnus Damm wrote:
> Setup the vbr register in machine_kexec() V2. This
> instead of passing values to the assembly snippet.
On Wed, Mar 18, 2009 at 05:49:45PM +0900, Magnus Damm wrote:
> Rework the kexec code to avoid using P2SEG. Instead
> we walk the page list in machine_kexec() and convert
> the addresses from physical to virtual using C.
On Wed, Mar 18, 2009 at 05:51:29PM +0900, Magnus Damm wrote:
> Add kexec jump support to the SuperH architecture V2.
>
> Similar to the x86 implementation, with the following
> exceptions:
>
> - Instead of separating the assembly code flow into
> two parts for regular kexec and kexec jump we use a
> single code path. In the assembly snippet regular
> kexec is just kexec jump that never comes back.
>
> - Instead of using a swap page when moving data between
> pages the page copy assembly routine has been modified
> to exchange the data between the pages using registers.
>
> - We walk the page list twice in machine_kexec() to
> do and undo physical to virtual address conversion.
Applied with a few fixups, including ftrace state save/restore.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2009-03-18 10:34 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-03-18 8:47 [PATCH] sh: simplify kexec vbr code V2 Magnus Damm
2009-03-18 10:34 ` Paul Mundt
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox