[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen master] xen/arm: vgic: Correctly calculate GICD_TYPER.ITLinesNumber
commit e7153f3775ed26554abbb1994832d096938f1b8a Author: Julien Grall <julien.grall@xxxxxxxxxx> AuthorDate: Wed Apr 1 17:21:46 2015 +0100 Commit: Ian Campbell <ian.campbell@xxxxxxxxxx> CommitDate: Thu Apr 2 10:42:35 2015 +0100 xen/arm: vgic: Correctly calculate GICD_TYPER.ITLinesNumber The formula of GICD_TYPER.ITLinesNumber is 32(N + 1). As the number of SPIs suppported by the domain may not be a multiple of 32, we have to round up the number before using it. At the same time remove the mask GICD_TYPE_LINES which is pointless. Signed-off-by: Julien Grall <julien.grall@xxxxxxxxxx> Acked-by: Ian Campbell <ian.campbell@xxxxxxxxxx> --- xen/arch/arm/vgic-v2.c | 2 +- xen/arch/arm/vgic-v3.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/xen/arch/arm/vgic-v2.c b/xen/arch/arm/vgic-v2.c index 40619b2..b5a8f29 100644 --- a/xen/arch/arm/vgic-v2.c +++ b/xen/arch/arm/vgic-v2.c @@ -55,7 +55,7 @@ static int vgic_v2_distr_mmio_read(struct vcpu *v, mmio_info_t *info) /* No secure world support for guests. */ vgic_lock(v); *r = ( ((v->domain->max_vcpus - 1) << GICD_TYPE_CPUS_SHIFT) ) - |( ((v->domain->arch.vgic.nr_spis / 32)) & GICD_TYPE_LINES ); + | DIV_ROUND_UP(v->domain->arch.vgic.nr_spis, 32); vgic_unlock(v); return 1; case GICD_IIDR: diff --git a/xen/arch/arm/vgic-v3.c b/xen/arch/arm/vgic-v3.c index 81fbb26..45a46c3 100644 --- a/xen/arch/arm/vgic-v3.c +++ b/xen/arch/arm/vgic-v3.c @@ -700,7 +700,7 @@ static int vgic_v3_distr_mmio_read(struct vcpu *v, mmio_info_t *info) if ( dabt.size != DABT_WORD ) goto bad_width; /* No secure world support for guests. */ *r = ((ncpus - 1) << GICD_TYPE_CPUS_SHIFT | - ((v->domain->arch.vgic.nr_spis / 32) & GICD_TYPE_LINES)); + DIV_ROUND_UP(v->domain->arch.vgic.nr_spis, 32)); *r |= (irq_bits - 1) << GICD_TYPE_ID_BITS_SHIFT; -- generated by git-patchbot for /home/xen/git/xen.git#master _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |