[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Xen-devel] [PATCH 08/38] arm: allocate and setup a guest vcpu.
On Thu, 7 Jun 2012, Ian Campbell wrote: > On Thu, 2012-06-07 at 10:40 +0100, Ian Campbell wrote: > > More head scratching required I think! > > This turned out to be the problem with not initialising cpu_sibling_mask > properly, see the thread against "[PATCH 16/38] arm: Add simple > cpu_{sibling,core}_mask". > > Having fixed that I updated based on your comments to: > > 8<----------------------------------------------------------- > > From 75cff29f4645dd19d07175109b5891fd44de9d60 Mon Sep 17 00:00:00 2001 > From: Ian Campbell <ian.campbell@xxxxxxxxxx> > Date: Fri, 13 Apr 2012 16:07:21 +0100 > Subject: [PATCH] arm: allocate and setup a guest vcpu. > > Signed-off-by: Ian Campbell <ian.campbell@xxxxxxxxxx> It looks OK now. Acked-by: Stefano Stabellini <stefano.stabellini@xxxxxxxxxxxxx> > xen/arch/arm/domain.c | 67 > +++++++++++++++++++++++++++++++++++++++++ > xen/arch/arm/dummy.S | 3 -- > xen/include/public/arch-arm.h | 9 ----- > 3 files changed, 67 insertions(+), 12 deletions(-) > > diff --git a/xen/arch/arm/domain.c b/xen/arch/arm/domain.c > index 9339a11..b099d91 100644 > --- a/xen/arch/arm/domain.c > +++ b/xen/arch/arm/domain.c > @@ -144,6 +144,17 @@ void free_vcpu_struct(struct vcpu *v) > free_xenheap_page(v); > } > > +struct vcpu_guest_context *alloc_vcpu_guest_context(void) > +{ > + return xmalloc(struct vcpu_guest_context); > + > +} > + > +void free_vcpu_guest_context(struct vcpu_guest_context *vgc) > +{ > + xfree(vgc); > +} > + > int vcpu_initialise(struct vcpu *v) > { > int rc = 0; > @@ -212,6 +223,62 @@ void arch_domain_destroy(struct domain *d) > /* domain_vgic_destroy */ > } > > +static int is_guest_psr(uint32_t psr) > +{ > + switch (psr & PSR_MODE_MASK) > + { > + case PSR_MODE_USR: > + case PSR_MODE_FIQ: > + case PSR_MODE_IRQ: > + case PSR_MODE_SVC: > + case PSR_MODE_ABT: > + case PSR_MODE_UND: > + case PSR_MODE_SYS: > + return 1; > + case PSR_MODE_MON: > + case PSR_MODE_HYP: > + default: > + return 0; > + } > +} > + > +/* > + * Initialise VCPU state. The context can be supplied by either the > + * toolstack (XEN_DOMCTL_setvcpucontext) or the guest > + * (VCPUOP_initialise) and therefore must be properly validated. > + */ > +int arch_set_info_guest( > + struct vcpu *v, vcpu_guest_context_u c) > +{ > + struct cpu_user_regs *regs = &c.nat->user_regs; > + > + if ( !is_guest_psr(regs->cpsr) ) > + return -EINVAL; > + > + if ( regs->spsr_svc && !is_guest_psr(regs->spsr_svc) ) > + return -EINVAL; > + if ( regs->spsr_abt && !is_guest_psr(regs->spsr_abt) ) > + return -EINVAL; > + if ( regs->spsr_und && !is_guest_psr(regs->spsr_und) ) > + return -EINVAL; > + if ( regs->spsr_irq && !is_guest_psr(regs->spsr_irq) ) > + return -EINVAL; > + if ( regs->spsr_fiq && !is_guest_psr(regs->spsr_fiq) ) > + return -EINVAL; > + > + v->arch.cpu_info->guest_cpu_user_regs = *regs; > + > + /* XXX other state: > + * - SCTLR > + * - TTBR0/1 > + * - TTBCR > + */ > + > + clear_bit(_VPF_down, &v->pause_flags); > + > + return 0; > +} > + > void arch_dump_domain_info(struct domain *d) > { > } > diff --git a/xen/arch/arm/dummy.S b/xen/arch/arm/dummy.S > index 016340c..3b48917 100644 > --- a/xen/arch/arm/dummy.S > +++ b/xen/arch/arm/dummy.S > @@ -20,11 +20,8 @@ DUMMY(pirq_guest_unbind); > DUMMY(pirq_set_affinity); > > /* VCPU */ > -DUMMY(alloc_vcpu_guest_context); > DUMMY(arch_get_info_guest); > -DUMMY(arch_set_info_guest); > DUMMY(arch_vcpu_reset); > -DUMMY(free_vcpu_guest_context); > DUMMY(sync_vcpu_execstate); > NOP(update_vcpu_system_time); > DUMMY(vcpu_show_execution_state); > diff --git a/xen/include/public/arch-arm.h b/xen/include/public/arch-arm.h > index 1b1bcf3..e439727 100644 > --- a/xen/include/public/arch-arm.h > +++ b/xen/include/public/arch-arm.h > @@ -124,15 +124,6 @@ typedef uint32_t xen_ulong_t; > > struct vcpu_guest_context { > struct cpu_user_regs user_regs; /* User-level CPU registers > */ > - union { > - uint32_t reg[16]; > - struct { > - uint32_t __pad[12]; > - uint32_t sp; /* r13 */ > - uint32_t lr; /* r14 */ > - uint32_t pc; /* r15 */ > - }; > - }; > }; > typedef struct vcpu_guest_context vcpu_guest_context_t; > DEFINE_XEN_GUEST_HANDLE(vcpu_guest_context_t); > -- > 1.7.9.1 > > > > _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |