From mboxrd@z Thu Jan 1 00:00:00 1970 From: Julien Grall Subject: Re: [PATCH] xen: arm: correct guest PSCI handling on 64-bit hypervisor. Date: Tue, 14 Jan 2014 18:57:25 +0000 Message-ID: <52D58895.6030900@linaro.org> References: <1389720774-27931-1-git-send-email-ian.campbell@citrix.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <1389720774-27931-1-git-send-email-ian.campbell@citrix.com> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: Ian Campbell Cc: stefano.stabellini@eu.citrix.com, tim@xen.org, xen-devel@lists.xen.org List-Id: xen-devel@lists.xenproject.org On 01/14/2014 05:32 PM, Ian Campbell wrote: > Using ->rN truncates the 64-bit registers to 32-bits, which on X-gene chops > off the top bit of the entry address for PSCI_UP. > > Follow the pattern established in do_trap_hypercall. > > Signed-off-by: Ian Campbell Acked-by: Julien Grall > --- > > Release argument: Only supporting single vcpu guests on arm64 would be > unfortunate. There is no risk to arm32 since the ifdef ensures the code > remains the same. > --- > xen/arch/arm/traps.c | 17 ++++++++++++++--- > 1 file changed, 14 insertions(+), 3 deletions(-) > > diff --git a/xen/arch/arm/traps.c b/xen/arch/arm/traps.c > index fdf9440..62c9df2 100644 > --- a/xen/arch/arm/traps.c > +++ b/xen/arch/arm/traps.c > @@ -1065,23 +1065,34 @@ static void do_debug_trap(struct cpu_user_regs *regs, unsigned int code) > } > #endif > > +#ifdef CONFIG_ARM_64 > +#define PSCI_OP_REG(r) (r)->x0 > +#define PSCI_RESULT_REG(r) (r)->x0 > +#define PSCI_ARGS(r) (r)->x1, (r)->x2 > +#else > +#define PSCI_OP_REG(r) (r)->r0 > +#define PSCI_RESULT_REG(r) (r)->r0 > +#define PSCI_ARGS(r) (r)->r1, (r)->r2 > +#endif > + > static void do_trap_psci(struct cpu_user_regs *regs) > { > arm_psci_fn_t psci_call = NULL; > > - if ( regs->r0 >= ARRAY_SIZE(arm_psci_table) ) > + if ( PSCI_OP_REG(regs) >= ARRAY_SIZE(arm_psci_table) ) > { > domain_crash_synchronous(); > return; > } > > - psci_call = arm_psci_table[regs->r0].fn; > + psci_call = arm_psci_table[PSCI_OP_REG(regs)].fn; > if ( psci_call == NULL ) > { > domain_crash_synchronous(); > return; > } > - regs->r0 = psci_call(regs->r1, regs->r2); > + > + PSCI_RESULT_REG(regs) = psci_call(PSCI_ARGS(regs)); > } > > #ifdef CONFIG_ARM_64 > -- Julien Grall