From: Julien Grall Date: Wed, 1 Jul 2015 11:01:10 +0000 (+0100) Subject: xen/arm: gic-{v2, hip04}: Remove hbase from the global state X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~2960 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=4df1d8970f37b201c9d275216347e4d31f9267a1;p=xen.git xen/arm: gic-{v2, hip04}: Remove hbase from the global state The driver only needs to know the base address of the hypervisor register during the GIC initialization (see {gicv2,hip04}_init). Signed-off-by: Julien Grall Acked-by: Ian Campbell Cc: Zoltan Kiss --- diff --git a/xen/arch/arm/gic-hip04.c b/xen/arch/arm/gic-hip04.c index 1b9d35e02e..984726a319 100644 --- a/xen/arch/arm/gic-hip04.c +++ b/xen/arch/arm/gic-hip04.c @@ -69,7 +69,6 @@ static struct { 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 */ - paddr_t hbase; /* Address of virtual interface registers */ void __iomem * map_hbase; /* IO Address of virtual interface registers */ paddr_t vbase; /* Address of virtual cpu interface registers */ spinlock_t lock; @@ -677,6 +676,7 @@ static hw_irq_controller hip04gic_guest_irq_type = { static int __init hip04gic_init(void) { int res; + paddr_t hbase; const struct dt_device_node *node = gicv2_info.node; res = dt_device_get_address(node, 0, &gicv2.dbase, NULL); @@ -687,7 +687,7 @@ static int __init hip04gic_init(void) if ( res ) panic("GIC-HIP04: Cannot find a valid address for the CPU"); - res = dt_device_get_address(node, 2, &gicv2.hbase, NULL); + res = dt_device_get_address(node, 2, &hbase, NULL); if ( res ) panic("GIC-HIP04: Cannot find a valid address for the hypervisor"); @@ -708,11 +708,11 @@ 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, gicv2.hbase, gicv2.vbase, + gicv2.dbase, gicv2.cbase, hbase, gicv2.vbase, gicv2_info.maintenance_irq); if ( (gicv2.dbase & ~PAGE_MASK) || (gicv2.cbase & ~PAGE_MASK) || - (gicv2.hbase & ~PAGE_MASK) || (gicv2.vbase & ~PAGE_MASK) ) + (hbase & ~PAGE_MASK) || (gicv2.vbase & ~PAGE_MASK) ) panic("GIC-HIP04 interfaces not page aligned"); gicv2.map_dbase = ioremap_nocache(gicv2.dbase, PAGE_SIZE); @@ -729,7 +729,7 @@ static int __init hip04gic_init(void) if ( !gicv2.map_cbase[0] || !gicv2.map_cbase[1] ) panic("GIC-HIP04: Failed to ioremap for GIC CPU interface\n"); - gicv2.map_hbase = ioremap_nocache(gicv2.hbase, PAGE_SIZE); + gicv2.map_hbase = ioremap_nocache(hbase, PAGE_SIZE); if ( !gicv2.map_hbase ) panic("GIC-HIP04: Failed to ioremap for GIC Virtual interface\n"); diff --git a/xen/arch/arm/gic-v2.c b/xen/arch/arm/gic-v2.c index 5d0eb830f3..6ec6602574 100644 --- a/xen/arch/arm/gic-v2.c +++ b/xen/arch/arm/gic-v2.c @@ -68,7 +68,6 @@ static struct { 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 */ - paddr_t hbase; /* Address of virtual interface registers */ void __iomem * map_hbase; /* IO Address of virtual interface registers */ paddr_t vbase; /* Address of virtual cpu interface registers */ spinlock_t lock; @@ -663,6 +662,7 @@ static hw_irq_controller gicv2_guest_irq_type = { static int __init gicv2_init(void) { int res; + paddr_t hbase; const struct dt_device_node *node = gicv2_info.node; res = dt_device_get_address(node, 0, &gicv2.dbase, NULL); @@ -673,7 +673,7 @@ static int __init gicv2_init(void) if ( res ) panic("GICv2: Cannot find a valid address for the CPU"); - res = dt_device_get_address(node, 2, &gicv2.hbase, NULL); + res = dt_device_get_address(node, 2, &hbase, NULL); if ( res ) panic("GICv2: Cannot find a valid address for the hypervisor"); @@ -694,11 +694,11 @@ static int __init gicv2_init(void) " gic_hyp_addr=%"PRIpaddr"\n" " gic_vcpu_addr=%"PRIpaddr"\n" " gic_maintenance_irq=%u\n", - gicv2.dbase, gicv2.cbase, gicv2.hbase, gicv2.vbase, + gicv2.dbase, gicv2.cbase, hbase, gicv2.vbase, gicv2_info.maintenance_irq); if ( (gicv2.dbase & ~PAGE_MASK) || (gicv2.cbase & ~PAGE_MASK) || - (gicv2.hbase & ~PAGE_MASK) || (gicv2.vbase & ~PAGE_MASK) ) + (hbase & ~PAGE_MASK) || (gicv2.vbase & ~PAGE_MASK) ) panic("GICv2 interfaces not page aligned"); gicv2.map_dbase = ioremap_nocache(gicv2.dbase, PAGE_SIZE); @@ -715,7 +715,7 @@ static int __init gicv2_init(void) if ( !gicv2.map_cbase[0] || !gicv2.map_cbase[1] ) panic("GICv2: Failed to ioremap for GIC CPU interface\n"); - gicv2.map_hbase = ioremap_nocache(gicv2.hbase, PAGE_SIZE); + gicv2.map_hbase = ioremap_nocache(hbase, PAGE_SIZE); if ( !gicv2.map_hbase ) panic("GICv2: Failed to ioremap for GIC Virtual interface\n");