]> git.baikalelectronics.ru Git - kernel.git/commit
riscv: make sure the cores stay looping in .Lsecondary_park
authorGreentime Hu <greentime.hu@sifive.com>
Wed, 15 Jan 2020 06:54:36 +0000 (14:54 +0800)
committerPaul Walmsley <paul.walmsley@sifive.com>
Thu, 16 Jan 2020 02:07:54 +0000 (18:07 -0800)
commit38b29761d742908926463aae5a839e655dbe2469
tree1b629654ed936a59191b0c266bfea36e204fbc3d
parentf1900be5a74dbaa08f19e3aaa9fd854e846d520c
riscv: make sure the cores stay looping in .Lsecondary_park

The code in secondary_park is currently placed in the .init section. The
kernel reclaims and clears this code when it finishes booting. That
causes the cores parked in it to go to somewhere unpredictable, so we
move this function out of init to make sure the cores stay looping there.

The instruction bgeu a0, t0, .Lsecondary_park may have "a relocation
truncated to fit" issue during linking time. It is because that sections
are too far to jump. Let's use tail to jump to the .Lsecondary_park.

Signed-off-by: Greentime Hu <greentime.hu@sifive.com>
Reviewed-by: Anup Patel <anup.patel@sifive.com>
Cc: Andreas Schwab <schwab@suse.de>
Cc: stable@vger.kernel.org
Fixes: b99b42298a186 ("RISC-V: Init and Halt Code")
Signed-off-by: Paul Walmsley <paul.walmsley@sifive.com>
arch/riscv/kernel/head.S