[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Xen-devel] [RFC for-4.5 4/5] xen/arm: Remove processor specific setup in vcpu_initialise
On Tue, 2014-02-11 at 20:04 +0000, Julien Grall wrote: > diff --git a/xen/arch/arm/arm32/proc-v7-c.c b/xen/arch/arm/arm32/proc-v7-c.c > new file mode 100644 > index 0000000..a3b94a2 > --- /dev/null > +++ b/xen/arch/arm/arm32/proc-v7-c.c > @@ -0,0 +1,32 @@ > +/* > + * xen/arch/arm/arm32/proc-v7-c.c > + * > + * arm v7 specific initializations (C part) I think strictly speaking this is actually cortex a{7,15} specific. Calling this file "proc-v7-ca15.c" or something (core-cortex.c?) would be nicer than the ugly -c suffix... > + * > + * Julien Grall <julien.grall@xxxxxxxxxx> > + * Copyright (c) 2014 Linaro Limited. > + * > + * This program is free software; you can redistribute it and/or modify > + * it under the terms of the GNU General Public License as published by > + * the Free Software Foundation; either version 2 of the License, or > + * (at your option) any later version. > + * > + * This program is distributed in the hope that it will be useful, > + * but WITHOUT ANY WARRANTY; without even the implied warranty of > + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the > + * GNU General Public License for more details. > + */ > +#include <asm/procinfo.h> > +#include <asm/processor.h> > + > +static void armv7_vcpu_initialize(struct vcpu *v) > +{ > + if ( v->domain->max_vcpus > 1 ) > + v->arch.actlr |= ACTLR_V7_SMP; > + else > + v->arch.actlr &= ~ACTLR_V7_SMP; > +} > + > +const struct processor armv7_processor = { __rodata? (or whatever it is called) > + .vcpu_initialize = armv7_vcpu_initialize, > +}; _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |