]> git.ipfire.org Git - thirdparty/qemu.git/commit
target/ppc: Fix pending HDEC when entering PM state
authorNicholas Piggin <npiggin@gmail.com>
Wed, 26 Jul 2023 18:22:27 +0000 (04:22 +1000)
committerMichael Tokarev <mjt@tls.msk.ru>
Sat, 5 Aug 2023 17:49:49 +0000 (20:49 +0300)
commitb96bb74e3a472bb7cf80789ba0a663f065534bc9
tree33c37c5bc447235ff0443eee4810bd1290ba923d
parentbfe876cb303a9dc4fe60fe459eee1d5eb837773f
target/ppc: Fix pending HDEC when entering PM state

HDEC is defined to not wake from PM state. There is a check in the HDEC
timer to avoid setting the interrupt if we are in a PM state, but no
check on PM entry to lower HDEC if it already fired. This can cause a
HDECR wake up and  QEMU abort with unsupported exception in Power Save
mode.

Fixes: 4b236b621bf ("ppc: Initial HDEC support")
Signed-off-by: Nicholas Piggin <npiggin@gmail.com>
Reviewed-by: Cédric Le Goater <clg@kaod.org>
Message-ID: <20230726182230.433945-4-npiggin@gmail.com>
Signed-off-by: Daniel Henrique Barboza <danielhb413@gmail.com>
(cherry picked from commit 9915dac4847f3cc5ffd36e4c374a4eec83fe09b5)
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
target/ppc/excp_helper.c