[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Xen-devel] [PATCH v5 04/14] xen/arm: support for guest SGI
On 04/30/2013 06:03 PM, Stefano Stabellini wrote: > Trap writes to GICD_SGIR, parse the requests, inject SGIs into the right > guest vcpu. > > Signed-off-by: Stefano Stabellini <stefano.stabellini@xxxxxxxxxxxxx> > > Changes in v5: > - assert virtual_irq < 16; > - align GICD defines; > - test for _VPF_down in pause_flags before adding a vcpu to the mask. > > Changes in v4: > - move the code to a separate function; > - use gdprintk for debugging output; > - make use of PRIregister; > - replace the cpumask with a bitmask; > - move the virtual_irq check outside the loop; > - ignore non-existent target vcpus. > > Changes in v3: > - make use of cpumask_from_bitmap. > --- > xen/arch/arm/vgic.c | 72 ++++++++++++++++++++++++++++++++++++++++++-- > xen/include/asm-arm/gic.h | 15 +++++---- > 2 files changed, 77 insertions(+), 10 deletions(-) > > diff --git a/xen/arch/arm/vgic.c b/xen/arch/arm/vgic.c > index b30da78..34c08c5 100644 > --- a/xen/arch/arm/vgic.c > +++ b/xen/arch/arm/vgic.c > @@ -17,6 +17,7 @@ > * GNU General Public License for more details. > */ > > +#include <xen/bitops.h> > #include <xen/config.h> > #include <xen/lib.h> > #include <xen/init.h> > @@ -368,6 +369,70 @@ static void vgic_enable_irqs(struct vcpu *v, uint32_t r, > int n) > } > } > > +static inline int is_vcpu_running(struct domain *d, int vcpuid) > +{ > + struct vcpu *v; > + > + if ( vcpuid >= d->max_vcpus ) > + return 0; > + > + v = d->vcpu[vcpuid]; > + if ( v == NULL ) > + return 0; > + if (test_bit(_VPF_down, &v->pause_flags) ) > + return 0; > + > + return 1; > +} > + > +static int vgic_to_sgi(struct vcpu *v, register_t sgir) > +{ > + struct domain *d = v->domain; > + int virtual_irq; > + int filter; > + int vcpuid; > + int i; > + unsigned long vcpu_mask = 0; > + > + ASSERT(d->max_vcpus < 8*sizeof(vcpu_mask)); > + > + filter = (sgir & GICD_SGI_TARGET_LIST_MASK); > + virtual_irq = (sgir & GICD_SGI_INTID_MASK); > + ASSERT( virtual_irq < 16 ); > + > + switch ( filter ) > + { > + case GICD_SGI_TARGET_LIST: > + vcpu_mask = (sgir & GICD_SGI_TARGET_MASK) >> > GICD_SGI_TARGET_SHIFT; > + break; > + case GICD_SGI_TARGET_OTHERS: > + for ( i = 0; i < d->max_vcpus; i++ ) > + { > + if ( i != current->vcpu_id && is_vcpu_running(d, i) ) > + set_bit(i, &vcpu_mask); > + } I think a break; is missing here. > + case GICD_SGI_TARGET_SELF: > + set_bit(current->vcpu_id, &vcpu_mask); > + break; > + default: > + gdprintk(XENLOG_WARNING, "vGICD: unhandled GICD_SGIR write > %"PRIregister" with wrong TargetListFilter field\n", > + sgir); > + return 0; > + } > + > + for_each_set_bit( vcpuid, &vcpu_mask, d->max_vcpus ) > + { > + if ( !is_vcpu_running(d, vcpuid) ) > + { > + gdprintk(XENLOG_WARNING, "vGICD: GICD_SGIR write > r=%"PRIregister" vcpu_mask=%lx, wrong CPUTargetList\n", > + sgir, vcpu_mask); > + continue; > + } > + vgic_vcpu_inject_irq(d->vcpu[vcpuid], virtual_irq, 1); > + } > + return 1; > +} > + > static int vgic_distr_mmio_write(struct vcpu *v, mmio_info_t *info) > { > struct hsr_dabt dabt = info->dabt; > @@ -498,10 +563,9 @@ static int vgic_distr_mmio_write(struct vcpu *v, > mmio_info_t *info) > goto write_ignore; > > case GICD_SGIR: > - if ( dabt.size != 2 ) goto bad_width; > - printk("vGICD: unhandled write %#"PRIregister" to ICFGR%d\n", > - *r, gicd_reg - GICD_ICFGR); > - return 0; > + if ( dabt.size != 2 ) > + goto bad_width; > + return vgic_to_sgi(v, *r); > > case GICD_CPENDSGIR ... GICD_CPENDSGIRN: > if ( dabt.size != 0 && dabt.size != 2 ) goto bad_width; > diff --git a/xen/include/asm-arm/gic.h b/xen/include/asm-arm/gic.h > index 92711d5..bf2d0a0 100644 > --- a/xen/include/asm-arm/gic.h > +++ b/xen/include/asm-arm/gic.h > @@ -51,12 +51,15 @@ > #define GICD_SPENDSGIRN (0xF2C/4) > #define GICD_ICPIDR2 (0xFE8/4) > > -#define GICD_SGI_TARGET_LIST (0UL<<24) > -#define GICD_SGI_TARGET_OTHERS (1UL<<24) > -#define GICD_SGI_TARGET_SELF (2UL<<24) > -#define GICD_SGI_TARGET_SHIFT (16) > -#define GICD_SGI_TARGET_MASK (0xFFUL<<GICD_SGI_TARGET_SHIFT) > -#define GICD_SGI_GROUP1 (1UL<<15) > +#define GICD_SGI_TARGET_LIST_SHIFT (24) > +#define GICD_SGI_TARGET_LIST_MASK (0x3UL << GICD_SGI_TARGET_LIST_SHIFT) > +#define GICD_SGI_TARGET_LIST (0UL<<GICD_SGI_TARGET_LIST_SHIFT) > +#define GICD_SGI_TARGET_OTHERS (1UL<<GICD_SGI_TARGET_LIST_SHIFT) > +#define GICD_SGI_TARGET_SELF (2UL<<GICD_SGI_TARGET_LIST_SHIFT) > +#define GICD_SGI_TARGET_SHIFT (16) > +#define GICD_SGI_TARGET_MASK (0xFFUL<<GICD_SGI_TARGET_SHIFT) > +#define GICD_SGI_GROUP1 (1UL<<15) > +#define GICD_SGI_INTID_MASK (0xFUL) > > #define GICC_CTLR (0x0000/4) > #define GICC_PMR (0x0004/4) -- Julien _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |