]> git.baikalelectronics.ru Git - kernel.git/commit
xtensa: xtfpga: Try software restart before simulating CPU reset
authorGuenter Roeck <linux@roeck-us.net>
Sun, 1 Aug 2021 17:36:59 +0000 (10:36 -0700)
committerMax Filippov <jcmvbkbc@gmail.com>
Tue, 5 Oct 2021 19:19:05 +0000 (12:19 -0700)
commit51139f59a0a00bbac804d02c87c07249ca2998b5
tree5ed499c4c46b0fea6d5d220e98ad5c153e533600
parent5318c08985c61a85c8f8f1290311ba7810baa45e
xtensa: xtfpga: Try software restart before simulating CPU reset

Rebooting xtensa images loaded with the '-kernel' option in qemu does
not work. When executing a reboot command, the qemu session either hangs
or experiences an endless sequence of error messages.

  Kernel panic - not syncing: Unrecoverable error in exception handler

Reset code jumps to the CPU restart address, but Linux can not recover
from there because code and data in the kernel init sections have been
discarded and overwritten at this point.

XTFPGA platforms have a means to reset the CPU by writing 0xdead into a
specific FPGA IO address. When used in QEMU the kernel image loaded with
the '-kernel' option gets restored to its original state allowing the
machine to boot successfully.

Use that mechanism to attempt a platform reset. If it does not work,
fall back to the existing mechanism.

Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
arch/xtensa/platforms/xtfpga/setup.c