From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:49322) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UVMqT-0001Xl-Ft for qemu-devel@nongnu.org; Thu, 25 Apr 2013 10:08:26 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UVMqS-0005XL-83 for qemu-devel@nongnu.org; Thu, 25 Apr 2013 10:08:21 -0400 Received: from mx1.redhat.com ([209.132.183.28]:31733) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UVMqR-0005X5-UR for qemu-devel@nongnu.org; Thu, 25 Apr 2013 10:08:20 -0400 From: Igor Mammedov Date: Thu, 25 Apr 2013 16:05:29 +0200 Message-Id: <1366898737-6201-8-git-send-email-imammedo@redhat.com> In-Reply-To: <1366898737-6201-1-git-send-email-imammedo@redhat.com> References: <1366898737-6201-1-git-send-email-imammedo@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] [PATCH 07/15] target-i386: replace MSI_SPACE_SIZE with APIC_SPACE_SIZE List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: peter.maydell@linaro.org, aliguori@us.ibm.com, ehabkost@redhat.com, mst@redhat.com, stefano.stabellini@eu.citrix.com, quintela@redhat.com, anthony.perard@citrix.com, pbonzini@redhat.com, afaerber@suse.de ... and put APIC_SPACE_SIZE in public header so that it could be reused later elsewhere. Signed-off-by: Igor Mammedov Reviewed-by: Andreas F=C3=A4rber --- hw/i386/kvm/apic.c | 2 +- hw/intc/apic.c | 2 +- hw/xen/xen_apic.c | 2 +- include/hw/i386/apic_internal.h | 2 -- target-i386/cpu.h | 1 + 5 files changed, 4 insertions(+), 5 deletions(-) diff --git a/hw/i386/kvm/apic.c b/hw/i386/kvm/apic.c index c6ff982..8f80425 100644 --- a/hw/i386/kvm/apic.c +++ b/hw/i386/kvm/apic.c @@ -174,7 +174,7 @@ static const MemoryRegionOps kvm_apic_io_ops =3D { static void kvm_apic_init(APICCommonState *s) { memory_region_init_io(&s->io_memory, &kvm_apic_io_ops, s, "kvm-apic-= msi", - MSI_SPACE_SIZE); + APIC_SPACE_SIZE); =20 if (kvm_has_gsi_routing()) { msi_supported =3D true; diff --git a/hw/intc/apic.c b/hw/intc/apic.c index 2d79a9e..756dff0 100644 --- a/hw/intc/apic.c +++ b/hw/intc/apic.c @@ -874,7 +874,7 @@ static const MemoryRegionOps apic_io_ops =3D { static void apic_init(APICCommonState *s) { memory_region_init_io(&s->io_memory, &apic_io_ops, s, "apic-msi", - MSI_SPACE_SIZE); + APIC_SPACE_SIZE); =20 s->timer =3D qemu_new_timer_ns(vm_clock, apic_timer, s); local_apics[s->idx] =3D s; diff --git a/hw/xen/xen_apic.c b/hw/xen/xen_apic.c index a2eb8a1..a958782 100644 --- a/hw/xen/xen_apic.c +++ b/hw/xen/xen_apic.c @@ -39,7 +39,7 @@ static const MemoryRegionOps xen_apic_io_ops =3D { static void xen_apic_init(APICCommonState *s) { memory_region_init_io(&s->io_memory, &xen_apic_io_ops, s, "xen-apic-= msi", - MSI_SPACE_SIZE); + APIC_SPACE_SIZE); =20 #if defined(CONFIG_XEN_CTRL_INTERFACE_VERSION) \ && CONFIG_XEN_CTRL_INTERFACE_VERSION >=3D 420 diff --git a/include/hw/i386/apic_internal.h b/include/hw/i386/apic_inter= nal.h index 578241f..aac6290 100644 --- a/include/hw/i386/apic_internal.h +++ b/include/hw/i386/apic_internal.h @@ -66,8 +66,6 @@ =20 #define MAX_APICS 255 =20 -#define MSI_SPACE_SIZE 0x100000 - typedef struct APICCommonState APICCommonState; =20 #define TYPE_APIC_COMMON "apic-common" diff --git a/target-i386/cpu.h b/target-i386/cpu.h index a1614e8..ab151d5 100644 --- a/target-i386/cpu.h +++ b/target-i386/cpu.h @@ -1270,5 +1270,6 @@ uint32_t x86_cpu_apic_id_from_index(unsigned int cp= u_index); void enable_compat_apic_id_mode(void); =20 #define APIC_DEFAULT_ADDRESS 0xfee00000 +#define APIC_SPACE_SIZE 0x100000 =20 #endif /* CPU_I386_H */ --=20 1.7.1