[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [RFC 17/22] xen/arm: gic-hip04: Move GICD, GICC and GICV base address in gic_info ...
... in order to decouple the vGIC driver from the GIC driver. Signed-off-by: Julien Grall <julien.grall@xxxxxxxxxx> --- xen/arch/arm/gic-hip04.c | 34 ++++++++++++++++------------------ 1 file changed, 16 insertions(+), 18 deletions(-) diff --git a/xen/arch/arm/gic-hip04.c b/xen/arch/arm/gic-hip04.c index 15e096b..416ef83 100644 --- a/xen/arch/arm/gic-hip04.c +++ b/xen/arch/arm/gic-hip04.c @@ -65,12 +65,9 @@ /* Global state */ static struct { - paddr_t dbase; /* Address of distributor registers */ void __iomem * map_dbase; /* IO mapped Address of distributor registers */ - paddr_t cbase; /* Address of CPU interface registers */ void __iomem * map_cbase[2]; /* IO mapped Address of CPU interface registers */ void __iomem * map_hbase; /* IO Address of virtual interface registers */ - paddr_t vbase; /* Address of virtual cpu interface registers */ spinlock_t lock; } gicv2; @@ -452,8 +449,8 @@ static int hip04gicv_setup(struct domain *d) */ if ( is_hardware_domain(d) ) { - d->arch.vgic.dbase = gicv2.dbase; - d->arch.vgic.cbase = gicv2.cbase; + d->arch.vgic.dbase = gicv2_info.dbase; + d->arch.vgic.cbase = gicv2_info.cbase; } else { @@ -469,16 +466,16 @@ static int hip04gicv_setup(struct domain *d) * GIC_64K_STRIDE quirk. The DTB passed to the guest reflects this. */ ret = map_mmio_regions(d, paddr_to_pfn(d->arch.vgic.cbase), 1, - paddr_to_pfn(gicv2.vbase)); + paddr_to_pfn(gicv2_info.vbase)); if ( ret ) return ret; if ( !platform_has_quirk(PLATFORM_QUIRK_GIC_64K_STRIDE) ) ret = map_mmio_regions(d, paddr_to_pfn(d->arch.vgic.cbase + SZ_4K), - 2, paddr_to_pfn(gicv2.vbase + SZ_4K)); + 2, paddr_to_pfn(gicv2_info.vbase + SZ_4K)); else ret = map_mmio_regions(d, paddr_to_pfn(d->arch.vgic.cbase + SZ_4K), - 2, paddr_to_pfn(gicv2.vbase + SZ_64K)); + 2, paddr_to_pfn(gicv2_info.vbase + SZ_64K)); return ret; } @@ -699,11 +696,11 @@ static int __init hip04gic_init(void) paddr_t hbase; const struct dt_device_node *node = gicv2_info.node; - res = dt_device_get_address(node, 0, &gicv2.dbase, NULL); + res = dt_device_get_address(node, 0, &gicv2_info.dbase, NULL); if ( res ) panic("GIC-HIP04: Cannot find a valid address for the distributor"); - res = dt_device_get_address(node, 1, &gicv2.cbase, NULL); + res = dt_device_get_address(node, 1, &gicv2_info.cbase, NULL); if ( res ) panic("GIC-HIP04: Cannot find a valid address for the CPU"); @@ -711,7 +708,7 @@ static int __init hip04gic_init(void) if ( res ) panic("GIC-HIP04: Cannot find a valid address for the hypervisor"); - res = dt_device_get_address(node, 3, &gicv2.vbase, NULL); + res = dt_device_get_address(node, 3, &gicv2_info.vbase, NULL); if ( res ) panic("GIC-HIP04: Cannot find a valid address for the virtual CPU"); @@ -728,23 +725,24 @@ static int __init hip04gic_init(void) " gic_hyp_addr=%"PRIpaddr"\n" " gic_vcpu_addr=%"PRIpaddr"\n" " gic_maintenance_irq=%u\n", - gicv2.dbase, gicv2.cbase, hbase, gicv2.vbase, + gicv2_info.dbase, gicv2_info.cbase, hbase, gicv2_info.vbase, gicv2_info.maintenance_irq); - if ( (gicv2.dbase & ~PAGE_MASK) || (gicv2.cbase & ~PAGE_MASK) || - (hbase & ~PAGE_MASK) || (gicv2.vbase & ~PAGE_MASK) ) + if ( (gicv2_info.dbase & ~PAGE_MASK) || (gicv2_info.cbase & ~PAGE_MASK) || + (hbase & ~PAGE_MASK) || (gicv2_info.vbase & ~PAGE_MASK) ) panic("GIC-HIP04 interfaces not page aligned"); - gicv2.map_dbase = ioremap_nocache(gicv2.dbase, SZ_4K); + gicv2.map_dbase = ioremap_nocache(gicv2_info.dbase, SZ_4K); if ( !gicv2.map_dbase ) panic("GIC-HIP04: Failed to ioremap for GIC distributor\n"); - gicv2.map_cbase[0] = ioremap_nocache(gicv2.cbase, SZ_4K); + gicv2.map_cbase[0] = ioremap_nocache(gicv2_info.cbase, SZ_4K); if ( platform_has_quirk(PLATFORM_QUIRK_GIC_64K_STRIDE) ) - gicv2.map_cbase[1] = ioremap_nocache(gicv2.cbase + SZ_64K, SZ_4K); + gicv2.map_cbase[1] = ioremap_nocache(gicv2_info.cbase + SZ_64K, + SZ_4K); else - gicv2.map_cbase[1] = ioremap_nocache(gicv2.cbase + SZ_4K, SZ_4K); + gicv2.map_cbase[1] = ioremap_nocache(gicv2_info.cbase + SZ_4K, SZ_4K); if ( !gicv2.map_cbase[0] || !gicv2.map_cbase[1] ) panic("GIC-HIP04: Failed to ioremap for GIC CPU interface\n"); -- 2.1.4 _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |