2 * Startup glue code to uncompress the kernel
4 * Copyright IBM Corp. 2010
6 * Author(s): Martin Schwidefsky <schwidefsky@de.ibm.com>
9 #include <linux/init.h>
10 #include <linux/linkage.h>
11 #include <asm/asm-offsets.h>
12 #include <asm/thread_info.h>
17 ENTRY(startup_continue)
18 basr %r13,0 # get base
21 lg %r15,.Lstack-.LPG1(%r13)
23 brasl %r14,decompress_kernel
24 # Set up registers for memory mover. We move the decompressed image to
25 # 0x11000, starting at offset 0x11000 in the decompressed image so
26 # that code living at 0x11000 in the image will end up at 0x11000 in
29 lg %r2,.Loffset-.LPG1(%r13)
31 lg %r3,.Lmvsize-.LPG1(%r13)
33 # Move the memory mover someplace safe so it doesn't overwrite itself.
35 mvc 0(mover_end-mover,%r1),mover-.LPG1(%r13)
36 # When the memory mover is done we pass control to
37 # arch/s390/kernel/head64.S:startup_continue which lives at 0x11000 in
38 # the decompressed image.
49 .quad 0x8000 + (1<<(PAGE_SHIFT+THREAD_ORDER))