Re: [Qemu-devel] [PATCH V2] Introduce a new bus "ICC" to connect APIC

2011-11-02 Thread Jan Kiszka
On 2011-11-02 02:40, liu ping fan wrote:
> On Tue, Nov 01, 2011 at 02:47:58PM +0100, Jan Kiszka wrote:
>> On 2011-11-01 08:41, pingf...@linux.vnet.ibm.com wrote:
>>> From: Liu Ping Fan 
>>>
>>> Introduce a new structure CPUS as the controller of ICC (INTERRUPT
>>> CONTROLLER COMMUNICATIONS), and new bus "ICC" to hold APIC,instead
>>> of sysbus. So we can support APIC hot-plug feature.
>>>
>>> Signed-off-by: liu ping fan 
>>> ---
>>>  Makefile.target |1 +
>>>  hw/apic.c   |   24 +
>>>  hw/apic.h   |1 +
>>>  hw/icc_bus.c|   92 
>>> +++
>>>  hw/icc_bus.h|   61 +
>>>  hw/pc.c |9 +++--
>>>  hw/pc_piix.c|   14 +++-
>>>  target-i386/cpu.h   |1 +
>>>  target-i386/cpuid.c |   16 +
>>>  9 files changed, 207 insertions(+), 12 deletions(-)
>>>  create mode 100644 hw/icc_bus.c
>>>  create mode 100644 hw/icc_bus.h
>>>
>>> diff --git a/Makefile.target b/Makefile.target
>>> index 9011f28..5607c6d 100644
>>> --- a/Makefile.target
>>> +++ b/Makefile.target
>>> @@ -241,6 +241,7 @@ obj-i386-$(CONFIG_KVM) += kvmclock.o
>>>  obj-i386-$(CONFIG_SPICE) += qxl.o qxl-logger.o qxl-render.o
>>>  obj-i386-y += testdev.o
>>>  obj-i386-y += acpi.o acpi_piix4.o
>>> +obj-i386-y += icc_bus.o
>>>  
>>>  obj-i386-y += pcspk.o i8254.o
>>>  obj-i386-$(CONFIG_KVM_PIT) += i8254-kvm.o
>>> diff --git a/hw/apic.c b/hw/apic.c
>>> index 69d6ac5..34fa1dd 100644
>>> --- a/hw/apic.c
>>> +++ b/hw/apic.c
>>> @@ -21,9 +21,10 @@
>>>  #include "ioapic.h"
>>>  #include "qemu-timer.h"
>>>  #include "host-utils.h"
>>> -#include "sysbus.h"
>>> +#include "icc_bus.h"
>>>  #include "trace.h"
>>>  #include "kvm.h"
>>> +#include "exec-memory.h"
>>>  
>>>  /* APIC Local Vector Table */
>>>  #define APIC_LVT_TIMER   0
>>> @@ -80,7 +81,7 @@
>>>  typedef struct APICState APICState;
>>>  
>>>  struct APICState {
>>> -SysBusDevice busdev;
>>> +ICCBusDevice busdev;
>>>  MemoryRegion io_memory;
>>>  void *cpu_env;
>>>  uint32_t apicbase;
>>> @@ -1104,9 +1105,19 @@ static const MemoryRegionOps apic_io_ops = {
>>>  .endianness = DEVICE_NATIVE_ENDIAN,
>>>  };
>>>  
>>> -static int apic_init1(SysBusDevice *dev)
>>> +int apic_mmio_map(DeviceState *dev, target_phys_addr_t base)
>>>  {
>>> -APICState *s = FROM_SYSBUS(APICState, dev);
>>> +APICState *s = DO_UPCAST(APICState, busdev.qdev, dev);
>>> +
>>> +memory_region_add_subregion(get_system_memory(),
>>> +base,
>>> +&s->io_memory);
>>> +return 0;
>>> +}
>>> +
>>> +static int apic_init1(ICCBusDevice *dev)
>>> +{
>>> +APICState *s = DO_UPCAST(APICState, busdev, dev);
>>>  static int last_apic_idx;
>>>  
>>>  if (last_apic_idx >= MAX_APICS) {
>>> @@ -1114,7 +1125,6 @@ static int apic_init1(SysBusDevice *dev)
>>>  }
>>>  memory_region_init_io(&s->io_memory, &apic_io_ops, s, "apic",
>>>MSI_ADDR_SIZE);
>>> -sysbus_init_mmio_region(dev, &s->io_memory);
>>>  
>>>  s->timer = qemu_new_timer_ns(vm_clock, apic_timer, s);
>>>  s->idx = last_apic_idx++;
>>> @@ -1122,7 +1132,7 @@ static int apic_init1(SysBusDevice *dev)
>>>  return 0;
>>>  }
>>>  
>>> -static SysBusDeviceInfo apic_info = {
>>> +static ICCBusDeviceInfo apic_info = {
>>>  .init = apic_init1,
>>>  .qdev.name = "apic",
>>>  .qdev.size = sizeof(APICState),
>>> @@ -1138,7 +1148,7 @@ static SysBusDeviceInfo apic_info = {
>>>  
>>>  static void apic_register_devices(void)
>>>  {
>>> -sysbus_register_withprop(&apic_info);
>>> +iccbus_register_devinfo(&apic_info);
>>>  }
>>>  
>>>  device_init(apic_register_devices)
>>> diff --git a/hw/apic.h b/hw/apic.h
>>> index c857d52..e2c0af5 100644
>>> --- a/hw/apic.h
>>> +++ b/hw/apic.h
>>> @@ -20,6 +20,7 @@ void cpu_set_apic_tpr(DeviceState *s, uint8_t val);
>>>  uint8_t cpu_get_apic_tpr(DeviceState *s);
>>>  void apic_init_reset(DeviceState *s);
>>>  void apic_sipi(DeviceState *s);
>>> +int apic_mmio_map(DeviceState *dev, target_phys_addr_t base);
>>>  
>>>  /* pc.c */
>>>  int cpu_is_bsp(CPUState *env);
>>> diff --git a/hw/icc_bus.c b/hw/icc_bus.c
>>> new file mode 100644
>>> index 000..ac88f2e
>>> --- /dev/null
>>> +++ b/hw/icc_bus.c
>>> @@ -0,0 +1,92 @@
>>> +/* icc_bus.c
>>> + * emulate x86 ICC(INTERRUPT CONTROLLER COMMUNICATIONS) bus
>>> + *
>>> + * Copyright IBM, Corp. 2011
>>> + *
>>> + * This library is free software; you can redistribute it and/or
>>> + * modify it under the terms of the GNU Lesser General Public
>>> + * License as published by the Free Software Foundation; either
>>> + * version 2 of the License, or (at your option) any later version.
>>> + *
>>> + * This library is distributed in the hope that it will be useful,
>>> + * but WITHOUT ANY WARRANTY; without even the implied warranty of
>>> + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
>>> 

Re: [Qemu-devel] [PATCH V2] Introduce a new bus "ICC" to connect APIC

2011-11-01 Thread liu ping fan
On Tue, Nov 01, 2011 at 02:47:58PM +0100, Jan Kiszka wrote:
> On 2011-11-01 08:41, pingf...@linux.vnet.ibm.com wrote:
> > From: Liu Ping Fan 
> > 
> > Introduce a new structure CPUS as the controller of ICC (INTERRUPT
> > CONTROLLER COMMUNICATIONS), and new bus "ICC" to hold APIC,instead
> > of sysbus. So we can support APIC hot-plug feature.
> > 
> > Signed-off-by: liu ping fan 
> > ---
> >  Makefile.target |1 +
> >  hw/apic.c   |   24 +
> >  hw/apic.h   |1 +
> >  hw/icc_bus.c|   92 
> > +++
> >  hw/icc_bus.h|   61 +
> >  hw/pc.c |9 +++--
> >  hw/pc_piix.c|   14 +++-
> >  target-i386/cpu.h   |1 +
> >  target-i386/cpuid.c |   16 +
> >  9 files changed, 207 insertions(+), 12 deletions(-)
> >  create mode 100644 hw/icc_bus.c
> >  create mode 100644 hw/icc_bus.h
> > 
> > diff --git a/Makefile.target b/Makefile.target
> > index 9011f28..5607c6d 100644
> > --- a/Makefile.target
> > +++ b/Makefile.target
> > @@ -241,6 +241,7 @@ obj-i386-$(CONFIG_KVM) += kvmclock.o
> >  obj-i386-$(CONFIG_SPICE) += qxl.o qxl-logger.o qxl-render.o
> >  obj-i386-y += testdev.o
> >  obj-i386-y += acpi.o acpi_piix4.o
> > +obj-i386-y += icc_bus.o
> >  
> >  obj-i386-y += pcspk.o i8254.o
> >  obj-i386-$(CONFIG_KVM_PIT) += i8254-kvm.o
> > diff --git a/hw/apic.c b/hw/apic.c
> > index 69d6ac5..34fa1dd 100644
> > --- a/hw/apic.c
> > +++ b/hw/apic.c
> > @@ -21,9 +21,10 @@
> >  #include "ioapic.h"
> >  #include "qemu-timer.h"
> >  #include "host-utils.h"
> > -#include "sysbus.h"
> > +#include "icc_bus.h"
> >  #include "trace.h"
> >  #include "kvm.h"
> > +#include "exec-memory.h"
> >  
> >  /* APIC Local Vector Table */
> >  #define APIC_LVT_TIMER   0
> > @@ -80,7 +81,7 @@
> >  typedef struct APICState APICState;
> >  
> >  struct APICState {
> > -SysBusDevice busdev;
> > +ICCBusDevice busdev;
> >  MemoryRegion io_memory;
> >  void *cpu_env;
> >  uint32_t apicbase;
> > @@ -1104,9 +1105,19 @@ static const MemoryRegionOps apic_io_ops = {
> >  .endianness = DEVICE_NATIVE_ENDIAN,
> >  };
> >  
> > -static int apic_init1(SysBusDevice *dev)
> > +int apic_mmio_map(DeviceState *dev, target_phys_addr_t base)
> >  {
> > -APICState *s = FROM_SYSBUS(APICState, dev);
> > +APICState *s = DO_UPCAST(APICState, busdev.qdev, dev);
> > +
> > +memory_region_add_subregion(get_system_memory(),
> > +base,
> > +&s->io_memory);
> > +return 0;
> > +}
> > +
> > +static int apic_init1(ICCBusDevice *dev)
> > +{
> > +APICState *s = DO_UPCAST(APICState, busdev, dev);
> >  static int last_apic_idx;
> >  
> >  if (last_apic_idx >= MAX_APICS) {
> > @@ -1114,7 +1125,6 @@ static int apic_init1(SysBusDevice *dev)
> >  }
> >  memory_region_init_io(&s->io_memory, &apic_io_ops, s, "apic",
> >MSI_ADDR_SIZE);
> > -sysbus_init_mmio_region(dev, &s->io_memory);
> >  
> >  s->timer = qemu_new_timer_ns(vm_clock, apic_timer, s);
> >  s->idx = last_apic_idx++;
> > @@ -1122,7 +1132,7 @@ static int apic_init1(SysBusDevice *dev)
> >  return 0;
> >  }
> >  
> > -static SysBusDeviceInfo apic_info = {
> > +static ICCBusDeviceInfo apic_info = {
> >  .init = apic_init1,
> >  .qdev.name = "apic",
> >  .qdev.size = sizeof(APICState),
> > @@ -1138,7 +1148,7 @@ static SysBusDeviceInfo apic_info = {
> >  
> >  static void apic_register_devices(void)
> >  {
> > -sysbus_register_withprop(&apic_info);
> > +iccbus_register_devinfo(&apic_info);
> >  }
> >  
> >  device_init(apic_register_devices)
> > diff --git a/hw/apic.h b/hw/apic.h
> > index c857d52..e2c0af5 100644
> > --- a/hw/apic.h
> > +++ b/hw/apic.h
> > @@ -20,6 +20,7 @@ void cpu_set_apic_tpr(DeviceState *s, uint8_t val);
> >  uint8_t cpu_get_apic_tpr(DeviceState *s);
> >  void apic_init_reset(DeviceState *s);
> >  void apic_sipi(DeviceState *s);
> > +int apic_mmio_map(DeviceState *dev, target_phys_addr_t base);
> >  
> >  /* pc.c */
> >  int cpu_is_bsp(CPUState *env);
> > diff --git a/hw/icc_bus.c b/hw/icc_bus.c
> > new file mode 100644
> > index 000..ac88f2e
> > --- /dev/null
> > +++ b/hw/icc_bus.c
> > @@ -0,0 +1,92 @@
> > +/* icc_bus.c
> > + * emulate x86 ICC(INTERRUPT CONTROLLER COMMUNICATIONS) bus
> > + *
> > + * Copyright IBM, Corp. 2011
> > + *
> > + * This library is free software; you can redistribute it and/or
> > + * modify it under the terms of the GNU Lesser General Public
> > + * License as published by the Free Software Foundation; either
> > + * version 2 of the License, or (at your option) any later version.
> > + *
> > + * This library is distributed in the hope that it will be useful,
> > + * but WITHOUT ANY WARRANTY; without even the implied warranty of
> > + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
> > + * Lesser General Public License for mor

Re: [Qemu-devel] [PATCH V2] Introduce a new bus "ICC" to connect APIC

2011-11-01 Thread Jan Kiszka
On 2011-11-01 08:41, pingf...@linux.vnet.ibm.com wrote:
> From: Liu Ping Fan 
> 
> Introduce a new structure CPUS as the controller of ICC (INTERRUPT
> CONTROLLER COMMUNICATIONS), and new bus "ICC" to hold APIC,instead
> of sysbus. So we can support APIC hot-plug feature.
> 
> Signed-off-by: liu ping fan 
> ---
>  Makefile.target |1 +
>  hw/apic.c   |   24 +
>  hw/apic.h   |1 +
>  hw/icc_bus.c|   92 
> +++
>  hw/icc_bus.h|   61 +
>  hw/pc.c |9 +++--
>  hw/pc_piix.c|   14 +++-
>  target-i386/cpu.h   |1 +
>  target-i386/cpuid.c |   16 +
>  9 files changed, 207 insertions(+), 12 deletions(-)
>  create mode 100644 hw/icc_bus.c
>  create mode 100644 hw/icc_bus.h
> 
> diff --git a/Makefile.target b/Makefile.target
> index 9011f28..5607c6d 100644
> --- a/Makefile.target
> +++ b/Makefile.target
> @@ -241,6 +241,7 @@ obj-i386-$(CONFIG_KVM) += kvmclock.o
>  obj-i386-$(CONFIG_SPICE) += qxl.o qxl-logger.o qxl-render.o
>  obj-i386-y += testdev.o
>  obj-i386-y += acpi.o acpi_piix4.o
> +obj-i386-y += icc_bus.o
>  
>  obj-i386-y += pcspk.o i8254.o
>  obj-i386-$(CONFIG_KVM_PIT) += i8254-kvm.o
> diff --git a/hw/apic.c b/hw/apic.c
> index 69d6ac5..34fa1dd 100644
> --- a/hw/apic.c
> +++ b/hw/apic.c
> @@ -21,9 +21,10 @@
>  #include "ioapic.h"
>  #include "qemu-timer.h"
>  #include "host-utils.h"
> -#include "sysbus.h"
> +#include "icc_bus.h"
>  #include "trace.h"
>  #include "kvm.h"
> +#include "exec-memory.h"
>  
>  /* APIC Local Vector Table */
>  #define APIC_LVT_TIMER   0
> @@ -80,7 +81,7 @@
>  typedef struct APICState APICState;
>  
>  struct APICState {
> -SysBusDevice busdev;
> +ICCBusDevice busdev;
>  MemoryRegion io_memory;
>  void *cpu_env;
>  uint32_t apicbase;
> @@ -1104,9 +1105,19 @@ static const MemoryRegionOps apic_io_ops = {
>  .endianness = DEVICE_NATIVE_ENDIAN,
>  };
>  
> -static int apic_init1(SysBusDevice *dev)
> +int apic_mmio_map(DeviceState *dev, target_phys_addr_t base)
>  {
> -APICState *s = FROM_SYSBUS(APICState, dev);
> +APICState *s = DO_UPCAST(APICState, busdev.qdev, dev);
> +
> +memory_region_add_subregion(get_system_memory(),
> +base,
> +&s->io_memory);
> +return 0;
> +}
> +
> +static int apic_init1(ICCBusDevice *dev)
> +{
> +APICState *s = DO_UPCAST(APICState, busdev, dev);
>  static int last_apic_idx;
>  
>  if (last_apic_idx >= MAX_APICS) {
> @@ -1114,7 +1125,6 @@ static int apic_init1(SysBusDevice *dev)
>  }
>  memory_region_init_io(&s->io_memory, &apic_io_ops, s, "apic",
>MSI_ADDR_SIZE);
> -sysbus_init_mmio_region(dev, &s->io_memory);
>  
>  s->timer = qemu_new_timer_ns(vm_clock, apic_timer, s);
>  s->idx = last_apic_idx++;
> @@ -1122,7 +1132,7 @@ static int apic_init1(SysBusDevice *dev)
>  return 0;
>  }
>  
> -static SysBusDeviceInfo apic_info = {
> +static ICCBusDeviceInfo apic_info = {
>  .init = apic_init1,
>  .qdev.name = "apic",
>  .qdev.size = sizeof(APICState),
> @@ -1138,7 +1148,7 @@ static SysBusDeviceInfo apic_info = {
>  
>  static void apic_register_devices(void)
>  {
> -sysbus_register_withprop(&apic_info);
> +iccbus_register_devinfo(&apic_info);
>  }
>  
>  device_init(apic_register_devices)
> diff --git a/hw/apic.h b/hw/apic.h
> index c857d52..e2c0af5 100644
> --- a/hw/apic.h
> +++ b/hw/apic.h
> @@ -20,6 +20,7 @@ void cpu_set_apic_tpr(DeviceState *s, uint8_t val);
>  uint8_t cpu_get_apic_tpr(DeviceState *s);
>  void apic_init_reset(DeviceState *s);
>  void apic_sipi(DeviceState *s);
> +int apic_mmio_map(DeviceState *dev, target_phys_addr_t base);
>  
>  /* pc.c */
>  int cpu_is_bsp(CPUState *env);
> diff --git a/hw/icc_bus.c b/hw/icc_bus.c
> new file mode 100644
> index 000..ac88f2e
> --- /dev/null
> +++ b/hw/icc_bus.c
> @@ -0,0 +1,92 @@
> +/* icc_bus.c
> + * emulate x86 ICC(INTERRUPT CONTROLLER COMMUNICATIONS) bus
> + *
> + * Copyright IBM, Corp. 2011
> + *
> + * This library is free software; you can redistribute it and/or
> + * modify it under the terms of the GNU Lesser General Public
> + * License as published by the Free Software Foundation; either
> + * version 2 of the License, or (at your option) any later version.
> + *
> + * This library is distributed in the hope that it will be useful,
> + * but WITHOUT ANY WARRANTY; without even the implied warranty of
> + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
> + * Lesser General Public License for more details.
> + *
> + * You should have received a copy of the GNU Lesser General Public
> + * License along with this library; if not, see 
> 
> + */
> +#include "icc_bus.h"
> +
> +static CPUSockets *cpu_sockets;
> +
> +static ICCBusInfo icc_bus_info = {
> +.qinfo.name = "icc",
> +.qinfo.size = sizeof

[Qemu-devel] [PATCH V2] Introduce a new bus "ICC" to connect APIC

2011-11-01 Thread pingfank
From: Liu Ping Fan 

Introduce a new structure CPUS as the controller of ICC (INTERRUPT
CONTROLLER COMMUNICATIONS), and new bus "ICC" to hold APIC,instead
of sysbus. So we can support APIC hot-plug feature.

Signed-off-by: liu ping fan 
---
 Makefile.target |1 +
 hw/apic.c   |   24 +
 hw/apic.h   |1 +
 hw/icc_bus.c|   92 +++
 hw/icc_bus.h|   61 +
 hw/pc.c |9 +++--
 hw/pc_piix.c|   14 +++-
 target-i386/cpu.h   |1 +
 target-i386/cpuid.c |   16 +
 9 files changed, 207 insertions(+), 12 deletions(-)
 create mode 100644 hw/icc_bus.c
 create mode 100644 hw/icc_bus.h

diff --git a/Makefile.target b/Makefile.target
index 9011f28..5607c6d 100644
--- a/Makefile.target
+++ b/Makefile.target
@@ -241,6 +241,7 @@ obj-i386-$(CONFIG_KVM) += kvmclock.o
 obj-i386-$(CONFIG_SPICE) += qxl.o qxl-logger.o qxl-render.o
 obj-i386-y += testdev.o
 obj-i386-y += acpi.o acpi_piix4.o
+obj-i386-y += icc_bus.o
 
 obj-i386-y += pcspk.o i8254.o
 obj-i386-$(CONFIG_KVM_PIT) += i8254-kvm.o
diff --git a/hw/apic.c b/hw/apic.c
index 69d6ac5..34fa1dd 100644
--- a/hw/apic.c
+++ b/hw/apic.c
@@ -21,9 +21,10 @@
 #include "ioapic.h"
 #include "qemu-timer.h"
 #include "host-utils.h"
-#include "sysbus.h"
+#include "icc_bus.h"
 #include "trace.h"
 #include "kvm.h"
+#include "exec-memory.h"
 
 /* APIC Local Vector Table */
 #define APIC_LVT_TIMER   0
@@ -80,7 +81,7 @@
 typedef struct APICState APICState;
 
 struct APICState {
-SysBusDevice busdev;
+ICCBusDevice busdev;
 MemoryRegion io_memory;
 void *cpu_env;
 uint32_t apicbase;
@@ -1104,9 +1105,19 @@ static const MemoryRegionOps apic_io_ops = {
 .endianness = DEVICE_NATIVE_ENDIAN,
 };
 
-static int apic_init1(SysBusDevice *dev)
+int apic_mmio_map(DeviceState *dev, target_phys_addr_t base)
 {
-APICState *s = FROM_SYSBUS(APICState, dev);
+APICState *s = DO_UPCAST(APICState, busdev.qdev, dev);
+
+memory_region_add_subregion(get_system_memory(),
+base,
+&s->io_memory);
+return 0;
+}
+
+static int apic_init1(ICCBusDevice *dev)
+{
+APICState *s = DO_UPCAST(APICState, busdev, dev);
 static int last_apic_idx;
 
 if (last_apic_idx >= MAX_APICS) {
@@ -1114,7 +1125,6 @@ static int apic_init1(SysBusDevice *dev)
 }
 memory_region_init_io(&s->io_memory, &apic_io_ops, s, "apic",
   MSI_ADDR_SIZE);
-sysbus_init_mmio_region(dev, &s->io_memory);
 
 s->timer = qemu_new_timer_ns(vm_clock, apic_timer, s);
 s->idx = last_apic_idx++;
@@ -1122,7 +1132,7 @@ static int apic_init1(SysBusDevice *dev)
 return 0;
 }
 
-static SysBusDeviceInfo apic_info = {
+static ICCBusDeviceInfo apic_info = {
 .init = apic_init1,
 .qdev.name = "apic",
 .qdev.size = sizeof(APICState),
@@ -1138,7 +1148,7 @@ static SysBusDeviceInfo apic_info = {
 
 static void apic_register_devices(void)
 {
-sysbus_register_withprop(&apic_info);
+iccbus_register_devinfo(&apic_info);
 }
 
 device_init(apic_register_devices)
diff --git a/hw/apic.h b/hw/apic.h
index c857d52..e2c0af5 100644
--- a/hw/apic.h
+++ b/hw/apic.h
@@ -20,6 +20,7 @@ void cpu_set_apic_tpr(DeviceState *s, uint8_t val);
 uint8_t cpu_get_apic_tpr(DeviceState *s);
 void apic_init_reset(DeviceState *s);
 void apic_sipi(DeviceState *s);
+int apic_mmio_map(DeviceState *dev, target_phys_addr_t base);
 
 /* pc.c */
 int cpu_is_bsp(CPUState *env);
diff --git a/hw/icc_bus.c b/hw/icc_bus.c
new file mode 100644
index 000..ac88f2e
--- /dev/null
+++ b/hw/icc_bus.c
@@ -0,0 +1,92 @@
+/* icc_bus.c
+ * emulate x86 ICC(INTERRUPT CONTROLLER COMMUNICATIONS) bus
+ *
+ * Copyright IBM, Corp. 2011
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, see 
+ */
+#include "icc_bus.h"
+
+static CPUSockets *cpu_sockets;
+
+static ICCBusInfo icc_bus_info = {
+.qinfo.name = "icc",
+.qinfo.size = sizeof(ICCBus),
+.qinfo.props = (Property[]) {
+DEFINE_PROP_END_OF_LIST(),
+}
+};
+
+static int iccbus_device_init(DeviceState *dev, DeviceInfo *base)
+{
+ICCBusDeviceInfo *info = container_of(base, ICCBusDeviceInfo, qdev);
+ICCBusDevice *idev = DO_UPCAST(ICCBusDevice, qdev, dev);
+
+return info->init(idev);
+}
+
+void iccbus_register_d