/* SPDX-License-Identifier: GPL-2.0 */1/*2* Copyright IBM Corp. 1999, 20103*4* Author(s): Hartmut Penner <[email protected]>5* Martin Schwidefsky <[email protected]>6* Rob van der Heij <[email protected]>7*8*/910#include <linux/init.h>11#include <linux/linkage.h>12#include <asm/lowcore.h>13#include <asm/asm-offsets.h>14#include <asm/thread_info.h>15#include <asm/page.h>16#include <asm/ptrace.h>1718__HEAD19SYM_CODE_START(startup_continue)20#21# Setup stack22#23GET_LC %r224larl %r14,init_task25stg %r14,__LC_CURRENT(%r2)26larl %r15,init_thread_union+STACK_INIT_OFFSET27stg %r15,__LC_KERNEL_STACK(%r2)28brasl %r14,sclp_early_adjust_va # allow sclp_early_printk29brasl %r14,startup_init # s390 specific early init30brasl %r14,start_kernel # common init code31#32# We returned from start_kernel ?!? PANIK33#34basr %r13,035lpswe dw_psw-.(%r13) # load disabled wait psw36SYM_CODE_END(startup_continue)3738.balign 1639SYM_DATA_LOCAL(dw_psw, .quad 0x0002000180000000,0x0000000000000000)404142