mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-08-04 15:01:20 +00:00
target/arm: Restrict PSCI to TCG
Under KVM, the kernel gets the HVC call and handle the PSCI requests. Backports commit 21fbea8c8af72817d8e21570fa4edbfae417341b from qemu
This commit is contained in:
parent
5aaf004bb2
commit
4eacf0ce98
|
@ -531,11 +531,15 @@ vaddr arm_adjust_watchpoint_address(CPUState *cs, vaddr addr, int len);
|
||||||
/* Callback function for when a watchpoint or breakpoint triggers. */
|
/* Callback function for when a watchpoint or breakpoint triggers. */
|
||||||
void arm_debug_excp_handler(CPUState *cs);
|
void arm_debug_excp_handler(CPUState *cs);
|
||||||
|
|
||||||
#ifdef CONFIG_USER_ONLY
|
#if defined(CONFIG_USER_ONLY) || !defined(CONFIG_TCG)
|
||||||
static inline bool arm_is_psci_call(ARMCPU *cpu, int excp_type)
|
static inline bool arm_is_psci_call(ARMCPU *cpu, int excp_type)
|
||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
static inline void arm_handle_psci_call(ARMCPU *cpu)
|
||||||
|
{
|
||||||
|
g_assert_not_reached();
|
||||||
|
}
|
||||||
#else
|
#else
|
||||||
/* Return true if the r0/x0 value indicates that this SMC/HVC is a PSCI call. */
|
/* Return true if the r0/x0 value indicates that this SMC/HVC is a PSCI call. */
|
||||||
bool arm_is_psci_call(ARMCPU *cpu, int excp_type);
|
bool arm_is_psci_call(ARMCPU *cpu, int excp_type);
|
||||||
|
|
Loading…
Reference in a new issue